My favorites | Sign in
Logo
                
Activity: Medium
Code license:
Apache License 2.0
Labels:
python, twitter, pytwitter, library, api
Featured downloads:
pytwitter-0.5.tar.gz
Show all »
Feeds:
Project feeds

pytwitter is a python library for the twitter API. It's pretty mimimal and is coded so that the methods are directly translated to the API urls - pytwitter.friendships_exists() will always make a request to http://twitter.com/friendships/exists.xml (or .json). If twitter add or change any methods, the library will instantly be able to use them.

>>> import pytwitter

>>> client = pytwitter.pytwitter(username='user', password='mypass')

>>> client.statuses_update(status='hello interwebs!!')

>>> client.friendships_create(id='buz')









Powered by Google Project Hosting