Skip to content

Instantly share code, notes, and snippets.

@jeffThompson
Last active March 30, 2017 19:54
Show Gist options
  • Save jeffThompson/6d4c45f89dc907925775972e72d9cf00 to your computer and use it in GitHub Desktop.
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
'''
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