Created
September 2, 2013 21:46
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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