Upload app.py
Browse files
app.py
CHANGED
@@ -33,8 +33,7 @@ def download_from_gdrive(file_id, destination):
|
|
33 |
destination (str): Local path to save the downloaded file.
|
34 |
"""
|
35 |
url = f"https://drive.google.com/uc?id={file_id}"
|
36 |
-
gdown.download(url, destination, quiet=
|
37 |
-
print(f"File downloaded to {destination}")
|
38 |
|
39 |
|
40 |
files = {
|
|
|
33 |
destination (str): Local path to save the downloaded file.
|
34 |
"""
|
35 |
url = f"https://drive.google.com/uc?id={file_id}"
|
36 |
+
gdown.download(url, destination, quiet=True)
|
|
|
37 |
|
38 |
|
39 |
files = {
|