5 lines
189 B
Python
5 lines
189 B
Python
import tango
|
|
|
|
# Instantiate Tango with Basic (HTTP) Authentication
|
|
twitter = tango.setup(authtype="Basic", username="example", password="example")
|
|
twitter.updateProfileImage("myImage.png")
|