diff --git a/Home.textile b/Home.textile index 55cf253..d2447e0 100644 --- a/Home.textile +++ b/Home.textile @@ -7,7 +7,7 @@ Twython takes care of authenticating a user with Twitter, so you can get full AP import twython # Create a Twython instance using Basic (HTTP) Authentication and update our Status -twitter = twython.setup(authtype="Basic", username="example", password="example") +twitter = twython.core.setup(username="example", password="example") twitter.updateStatus("See how easy this was?") @@ -18,7 +18,7 @@ Maybe you're happy with the current crop of Twitter libraries for Python, but I' h1. What does Twython require? -Twython requires the "simplejson":http://code.google.com/p/simplejson/ library for parsing Twitter responses. If you intend to authenticate with OAuth, Twython requires the "OAuth library for Python":http://oauth.googlecode.com/svn/code/python/. +Twython requires the "simplejson":http://code.google.com/p/simplejson/ library for parsing Twitter responses. h1. I have a patch, can I contribute back?