Groups
Groups
Sign in
Groups
Groups
python-twitter
Conversations
About
Send feedback
Help
download pictures?
57 views
Skip to first unread message
Christian
unread,
Jul 31, 2014, 8:08:47 PM
7/31/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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 PM
3/17/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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