abhivsh commited on
Commit
3eff7cc
·
verified ·
1 Parent(s): 1b6d932

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
- destination_folder = os.getcwd()
41
- download_and_extract_zip(URL, destination_folder)
 
 
 
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)