diff --git a/Status-Methods.textile b/Status-Methods.textile index e5ec99c..7743bd5 100644 --- a/Status-Methods.textile +++ b/Status-Methods.textile @@ -13,10 +13,10 @@ Parameters
-import tango
+import twython
# Instantiate with Basic (HTTP) Authentication
-twitter = tango.setup(authtype="Basic", username="example", password="example")
+twitter = twython.setup(authtype="Basic", username="example", password="example")
twitter.updateStatus("See how easy this was?")
@@ -32,10 +32,10 @@ Parameters
-import tango
+import twython
# Instantiate with Basic (HTTP) Authentication
-twitter = tango.setup(authtype="Basic", username="example", password="example")
+twitter = twython.setup(authtype="Basic", username="example", password="example")
twitter.destroyStatus("12344545")
@@ -50,10 +50,10 @@ Parameters
-import tango
+import twython
# Instantiate with no Auth - Auth might be needed if user is protected
-twitter = tango.setup()
+twitter = twython.setup()
status = twitter.showStatus("123")
print status["text"]