Spaces:
Sleeping
Sleeping
thejagstudio
commited on
Commit
•
97ec93b
1
Parent(s):
dcf4f6b
Update src/routes/download.py
Browse files- src/routes/download.py +1 -1
src/routes/download.py
CHANGED
@@ -40,7 +40,7 @@ async def downloadFunction(name):
|
|
40 |
def download_file(response):
|
41 |
print("Started Streamming")
|
42 |
for chunk in response.iter_content(4096):
|
43 |
-
print(chunk
|
44 |
yield chunk
|
45 |
|
46 |
def get_confirm_token(response):
|
|
|
40 |
def download_file(response):
|
41 |
print("Started Streamming")
|
42 |
for chunk in response.iter_content(4096):
|
43 |
+
print(chunk.decode('utf-8'))
|
44 |
yield chunk
|
45 |
|
46 |
def get_confirm_token(response):
|