Skip to content

Instantly share code, notes, and snippets.

@KristinHenry
Last active June 26, 2018 22:17
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 KristinHenry/850fc9da961a2087c45594d07dba3d5a to your computer and use it in GitHub Desktop.
Save KristinHenry/850fc9da961a2087c45594d07dba3d5a to your computer and use it in GitHub Desktop.
looping over list of video links for downloading
for url in links:
command = "youtube-dl" + " " + url
return_code = subprocess.call(command, shell=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment