Skip to content

Instantly share code, notes, and snippets.

@jeffThompson
Last active August 14, 2026 18:31
Show Gist options
  • Select an option

  • Save jeffThompson/6d4c45f89dc907925775972e72d9cf00 to your computer and use it in GitHub Desktop.

Select an option

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!'
@SobieArts

Copy link
Copy Markdown

mew

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment