Migrated from home v5

ryanmcgrath 2010-09-13 02:21:56 -07:00
parent cf3748a3eb
commit b4b0ac7aed

@ -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?")
</code>
</pre>
@ -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?