You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 7, 2024. It is now read-only.
This library provides a pure Python interface for the Twitter API.
Twitter provides a service that allows people to connect via the web, IM, and SMS. Twitter exposes a web API and this library is intended to make it even easier for Python programmers to use.
To create an instance of the twitter.Api with login credentials (many API calls required the client to be authenticated.)
The python-twitter library now only supports oAuth authentication as the Twitter devs have indicated that OAuth is the only method that will be supported moving forward.
>>> api = twitter.Api(consumer_key='consumer_key',
consumer_secret='consumer_secret',
access_token_key='access_token',
access_token_secret='access_token_secret')
NOTE - much more than the small sample given here will print
To fetch a single user's public status messages, where user is either
a Twitter short name or their user id.
>>> statuses = api.GetUserTimeline(user)
>>> print [s.text for s in statuses]
To fetch a list a user's friends (requires authentication):
>>> users = api.GetFriends()
>>> print [u.name for u in users]
To post a Twitter status message (requires authentication):
>>> status = api.PostUpdate('I love python-twitter!')
>>> print status.text
I love python-twitter!
There are many more API methods, to read the full API documentation:
$ pydoc twitter.Api
Todo
Patches and bug reports are welcome, just please keep the style consistent with the original source.
Add more example scripts.
The twitter.Status and twitter.User classes are going to be hard to keep in sync with the API if the API changes. More of the code could probably be written with introspection.
Statement coverage of twitter_test is only about 80% of twitter.py.
The twitter.Status and twitter.User classes could perform more validation on the property setters.
Additional thanks to Pierre-Jean Coudert, Omar Kilani, Jodok Batlogg, edleaf, glen.tregoning, Brad Choate, Jim Cortez, Jason Lemoine, Thomas Dyson, Robert Laquey, Hameedullah Khan, Mike Taylor, DeWitt Clinton, and the rest of the python-twitter mailing list.
License
Copyright 2007 The Python-Twitter Developers
Licensed under the Apache License, Version 2.0 (the 'License');
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an 'AS IS' BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.