Skip to content

Instantly share code, notes, and snippets.

@plux
Created July 13, 2012 20:59
Show Gist options
  • Save plux/3107424 to your computer and use it in GitHub Desktop.
Save plux/3107424 to your computer and use it in GitHub Desktop.
random imgur tinyer
import os,random,string,sys,urllib2
n=5if len(sys.argv)<2 else int(sys.argv[1])
while n>0:
s=''.join(random.sample(string.letters+string.digits,5))+'.jpg'
i=urllib2.urlopen('http://i.imgur.com/'+s).read()
if len(i)!=503:n-=1;open('output/'+s,'wb').write(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment