Twitter API wrapper for python with **no API key required**.
Project description
Twikit
A Simple Twitter API Scraper
You can use functions such as posting or searching for tweets without an API key using this library.
Features
No API Key Required
This library uses scraping and does not require an API key.
Free
This library is free to use.
Both Synchronous and Asynchronous Support
Twikit supports both synchronous and asynchronous.
Functionality
By using Twikit, you can access functionalities such as the following:
-
Create tweets
-
Search tweets
-
Retrieve trending topics
-
etc...
Installing
pip install twikit
Quick Example
Define a client and log in to the account.
from twikit import Client
USERNAME = 'example_user'
EMAIL = 'email@example.com'
PASSWORD = 'password0000'
# Initialize client
client = Client('en-US')
client.login(
auth_info_1=USERNAME ,
auth_info_2=EMAIL,
password=PASSWORD
)
Create a tweet with media attached.
# Upload media files and obtain media_ids
media_ids = [
client.upload_media('media1.jpg'),
client.upload_media('media2.jpg')
]
# Create a tweet with the provided text and attached media
client.create_tweet(
text='Example Tweet',
media_ids=media_ids
)
Search the latest tweets based on a keyword
tweets = client.search_tweet('python', 'Latest')
for tweet in tweets:
print(
tweet.user.name,
tweet.text,
tweet.created_at
)
Retrieve user tweets
tweets = client.get_user_tweets('123456', 'Tweet')
for tweet in tweets:
print(tweet.text)
More Examples: examples
Contributing
If you encounter any bugs or issues, please report them on issues.
Additionally, if you find this library useful, I would appreciate it if you would star this repository or share this library.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file twikit-1.7.4.tar.gz
.
File metadata
- Download URL: twikit-1.7.4.tar.gz
- Upload date:
- Size: 91.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70890b94b4c9c405f26d32cc7a8c4b72ef8d9d0bffc10e97a93810f5399002ac |
|
MD5 | fa4287a8783b7122f4c5fb70788cfa29 |
|
BLAKE2b-256 | 7e4ad2b748aca85671fb10ff6df346a656f00a52cd1433f73b2233a004690856 |
File details
Details for the file twikit-1.7.4-py3-none-any.whl
.
File metadata
- Download URL: twikit-1.7.4-py3-none-any.whl
- Upload date:
- Size: 109.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a511719616d05d3e18dc43041b3b215a159fbc173a47cf502dba80f7f44b85f |
|
MD5 | 73fa3f917e9333b94190ca6975e0e82a |
|
BLAKE2b-256 | e4e799d6945066e75de9708a036f4d66d612a4e10af6b89b891d4945596d0e4d |