Skip to content

Instantly share code, notes, and snippets.

@DanBradbury
Last active November 16, 2018 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanBradbury/e22030a74c6fe180119e01ae176db50c to your computer and use it in GitHub Desktop.
Save DanBradbury/e22030a74c6fe180119e01ae176db50c to your computer and use it in GitHub Desktop.
Automate Bundle Download
import urllib, zipfile, os
from tqdm import tqdm
links = [
]
for link_location in tqdm(links):
urllib.urlretrieve(link_location, "temp.zip")
zip = zipfile.ZipFile("temp.zip")
zip.extractall()
os.remove("temp.zip")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment