Skip to content

Instantly share code, notes, and snippets.

@momer
Created September 2, 2013 21:46
Show Gist options
  • Save momer/6417538 to your computer and use it in GitHub Desktop.
Save momer/6417538 to your computer and use it in GitHub Desktop.
University of Colorado - Colorado Springs puts up a bunch of math course video lectures & more online for free. Simple script to download all of the Discrete Math lectures
import urllib
import urllib.request
def DownloadClass():
url = "http://cmes.uccs.edu/Fall2011/Math215/Videos/"
ext = ".mov"
movie_name = "Math215Lecture"
for i in range(1, 27):
new_link = url + movie_name + str(i) + ext
f = urllib.request.urlretrieve(new_link, movie_name + str(i) + ext)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment