Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Tweepy | 9,907 | 4,151 | 267 | 2 months ago | 47 | April 24, 2023 | 82 | mit | Python | |
Twitter for Python! | ||||||||||
Twitteroauth | 4,283 | 721 | 167 | a day ago | 42 | October 28, 2023 | 7 | mit | PHP | |
The most popular PHP library for use with the Twitter OAuth REST API. | ||||||||||
Twitter Scraper | 3,672 | 10 | 2 | a month ago | 11 | July 17, 2020 | 53 | mit | Python | |
Scrape the Twitter Frontend API without authentication. | ||||||||||
Python Twitter | 3,277 | 1,671 | 53 | 2 years ago | 24 | November 03, 2018 | 92 | other | Python | |
A Python wrapper around the Twitter API. | ||||||||||
Twitter Api V2 Sample Code | 2,290 | a month ago | 70 | apache-2.0 | JavaScript | |||||
Sample code for the Twitter API v2 endpoints | ||||||||||
Harpy | 1,985 | a month ago | gpl-3.0 | Dart | ||||||
a Twitter app built with Flutter 🦅 | ||||||||||
Twitter Api Php | 1,819 | 423 | 44 | 4 years ago | 4 | May 08, 2017 | 30 | mit | PHP | |
The simplest PHP Wrapper for Twitter API v1.1 calls | ||||||||||
Twython | 1,786 | 1,128 | 29 | 2 years ago | 61 | July 16, 2021 | 21 | mit | Python | |
Actively maintained, pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs. | ||||||||||
Twurl | 1,774 | 12 | 2 | 5 months ago | 20 | August 27, 2020 | 12 | mit | Ruby | |
OAuth-enabled curl for the Twitter API | ||||||||||
Go Twitter | 1,558 | 72 | 317 | a year ago | 3 | November 04, 2022 | 7 | mit | Go | |
Go Twitter REST and Streaming API v1.1 |
The easiest way to install the latest version from PyPI is by using pip:
pip install tweepy
To use the tweepy.asynchronous
subpackage, be sure to install with the
async
extra:
pip install tweepy[async]
You can also use Git to clone the repository from GitHub to install the latest development version:
git clone https://github.com/tweepy/tweepy.git
cd tweepy
pip install .
Alternatively, install directly from the GitHub repository:
pip install git+https://github.com/tweepy/tweepy.git
Python 3.7 - 3.11 are supported.