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