5 lines
193 B
Python
5 lines
193 B
Python
import twython.core as twython
|
|
|
|
# Instantiate Twython with Basic (HTTP) Authentication
|
|
twitter = twython.setup(username="example", password="example")
|
|
twitter.updateProfileImage("myImage.png")
|