Skip to content

Instantly share code, notes, and snippets.

@fmasanori
Created July 1, 2013 14:54
Show Gist options
  • Save fmasanori/5901541 to your computer and use it in GitHub Desktop.
Save fmasanori/5901541 to your computer and use it in GitHub Desktop.
Facebook Profile Photo
import urllib
url = 'https://graph.facebook.com/1183621847/picture?type=large'
imagem = urllib.urlopen(url).read()
f = open('foto.jpg', 'wb')
f.write(imagem)
f.close()
print ('Foto do perfil gravada...')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment