Spaces:
Runtime error
Runtime error
Rename download_data.py to download_and_extract_zip.py
Browse files
download_data.py → download_and_extract_zip.py
RENAMED
|
@@ -37,5 +37,7 @@ def download_and_extract_zip(url, destination_folder):
|
|
| 37 |
os.remove(zip_file_path)
|
| 38 |
|
| 39 |
|
| 40 |
-
|
| 41 |
-
|
|
|
|
|
|
|
|
|
| 37 |
os.remove(zip_file_path)
|
| 38 |
|
| 39 |
|
| 40 |
+
# Call the function to download and extract the data
|
| 41 |
+
if __name__ == "__main__":
|
| 42 |
+
destination_folder = os.getcwd()
|
| 43 |
+
download_and_extract_zip(URL, destination_folder)
|