An example showing how to update a status using basic authentication.

This commit is contained in:
Ryan McGrath 2009-06-14 04:09:27 -04:00
parent e697d7206d
commit b2ba65cc45

View file

@ -0,0 +1,5 @@
import tango
# Create a Tango instance using Basic (HTTP) Authentication and update our Status
twitter = tango.setup(authtype="Basic", username="example", password="example")
twitter.updateStatus("See how easy this was?")