twython/examples/update_profile_image.py
Mike Helmick 6238912b96 Update examples and READMEs
[ci skip]
2013-05-16 13:36:46 -04:00

7 lines
229 B
Python

from twython import Twython
# Requires Authentication as of Twitter API v1.1
twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET)
avatar = open('myImage.png', 'rb')
twitter.update_profile_image(image=avatar)