Last active
March 30, 2017 19:54
-
-
Save jeffThompson/6d4c45f89dc907925775972e72d9cf00 to your computer and use it in GitHub Desktop.
Downloads all 411 paintings by Bob Ross from the site Two Inch Brush
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
''' | |
DOWNLOAD EVERY BOB ROSS PAINTING | |
Jeff Thompson | 2017 | jeffreythompson.org | |
Downloads all 411 paintings by Bob Ross from the | |
site Two Inch Brush. | |
''' | |
import urllib | |
for i in range(1, 412): | |
try: | |
print 'downloading painting ' + str(i) + '/' + str(num_images) + '...' | |
url = 'http://www.twoinchbrush.com/images/painting' + str(i) + '.png' | |
url = url.encode('utf-8') | |
filename = ('%03d' % (i,)) + '.png' | |
urllib.urlretrieve(url, filename) | |
except: | |
print '- ERROR!' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment