download pictures?

57 views
Skip to first unread message

Christian

unread,
Jul 31, 2014, 8:08:47 PM7/31/14
to python-...@googlegroups.com
Is it possible to download pictures resp. to get the image-url? I can't find the media-json node ...

Dkode

unread,
Mar 17, 2016, 1:15:55 PM3/17/16
to python-twitter
You can use urllib or urllib2 library for downloading pictures

import urllib

my_url = my_user.profile_image_url

my_picture = open ('My_picture.jpg' ,'wb')

my_picture.write (urllib.urlopen (my_url) .read( ) )

my_picture.close()

Reply all
Reply to author
Forward
0 new messages