- Notifications
You must be signed in to change notification settings - Fork396
Actively maintained, pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs.
License
ryanmcgrath/twython
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Twython
is a Python library providing an easy way to access Twitter data. Supports Python 3. It's been battle tested by companies, educational institutions and individuals alike. Try it today!
Note: As of Twython 3.7.0, there's a general call for maintainers put out. If you find the project useful and want to help out, reach out to Ryan with the info from the bottom of this README. Great open source project to get your feet wet with!
- Query data for:
- User information
- Twitter lists
- Timelines
- Direct Messages
- and anything found inthe docs
- Image Uploading:
- Update user status with an image
- Change user avatar
- Change user background image
- Change user banner image
- OAuth 2 Application Only (read-only) Support
- Support for Twitter's Streaming API
- Seamless Python 3 support!
Install Twython via pip:
$ pip install twython
If you're on a legacy project that needs Python 2.7 support, you can install the last version of Twython that supported 2.7:
pip install twython==3.7.0`
Or, if you want the code that is currently on GitHub:
git clone git://github.com/ryanmcgrath/twython.gitcd twythonpython setup.py install
Documentation is available athttps://twython.readthedocs.io/en/latest/
First, you'll want to head over tohttps://apps.twitter.com and register an application!
After you register, grab your applicationsConsumer Key
andConsumer Secret
from the application details tab.
The most common type of authentication is Twitter user authentication using OAuth 1. If you're a web app planning to have users sign up with their Twitter account and interact with their timelines, updating their status, and stuff like that thisis the authentication for you!
First, you'll want to import Twython
fromtwythonimportTwython
Now, you'll want to create a Twython instance with yourConsumer Key
andConsumer Secret
:
- Only passcallback_url toget_authentication_tokens if your application is a Web Application
- Desktop and Mobile Applicationsdo not require a callback_url
APP_KEY='YOUR_APP_KEY'APP_SECRET='YOUR_APP_SECRET'twitter=Twython(APP_KEY,APP_SECRET)auth=twitter.get_authentication_tokens(callback_url='http://mysite.com/callback')
From theauth
variable, save theoauth_token
andoauth_token_secret
for later use (these are not the final auth tokens). In Django or other web frameworks, you might want to store it to a session variable
OAUTH_TOKEN=auth['oauth_token']OAUTH_TOKEN_SECRET=auth['oauth_token_secret']
Send the user to the authentication url, you can obtain it by accessing
auth['auth_url']
If your application is a Desktop or Mobile Applicationoauth_verifier will be the PIN code
After they authorize your application to access some of their account details, they'll be redirected to the callback url you specified inget_authentication_tokens
.
You'll want to extract theoauth_verifier
from the url.
Django example:
oauth_verifier=request.GET['oauth_verifier']
Now that you have theoauth_verifier
stored to a variable, you'll want to create a new instance of Twython and grab the final user tokens
twitter=Twython(APP_KEY,APP_SECRET,OAUTH_TOKEN,OAUTH_TOKEN_SECRET)final_step=twitter.get_authorized_tokens(oauth_verifier)
Once you have the final user tokens, store them in a database for later use::
OAUTH_TOKEN=final_step['oauth_token']OAUTH_TOKEN_SECRET=final_step['oauth_token_secret']
For OAuth 2 (Application Only, read-only) authentication, seeour documentation.
Keyword arguments to functions are mapped to the functions available for each endpoint in the Twitter API docs. Doing this allows us to be incredibly flexible in querying the Twitter API, so changes to the API aren't held up from you using them by this library.
Function definitions (i.e. get_home_timeline()) can be found by reading over twython/endpoints.py
Create a Twython instance with your application keys and the users OAuth tokens
fromtwythonimportTwythontwitter=Twython(APP_KEY,APP_SECRET,OAUTH_TOKEN,OAUTH_TOKEN_SECRET)
twitter.get_home_timeline()
This method makes use of dynamic arguments,read more about them.
twitter.update_status(status='See how easy using Twython is!')
My hope is that Twython is so simple that you'd neverhave to ask any questions, but if you feel the need to contact me for this (or other) reasons, you can hit me up atryan@venodesigns.net.
Or if I'm to busy to answer, feel free to pingmikeh@ydekproductions.com as well.
Follow us on Twitter:
Twython is useful, but ultimately only as useful as the people using it (say that ten times fast!). If you'd like to help, write example code, contribute patches, document things on the wiki, tweet about it. Your help is always appreciated!
About
Actively maintained, pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs.
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.