Twitter API wrapper for python with **no API key required**.
Project description
Twikit
simple API wrapper to interact with twitter's unofficial API.
You can log in to Twitter using your account username, email address and password and use most features on Twitter, such as posting and retrieving tweets, liking and following users.
If you have any questions, please ask on Discord.
Features
No API Key Required
This library uses the unofficial API, therefore does not require an API key.
Completely Free
This library is completely free to use.
Both Synchronous and Asynchronous Support
Whether you prefer synchronous or asynchronous programming,
Twikit supports both, providing flexibility for different use cases.
Functionality
This library allows you to perform various Twitter-related actions, including:
-
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')
# Login to the service with provided user credentials
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 keywords
tweets = client.search_tweet('python', 'Latest')
for tweet in tweets:
print(
tweet.user.name,
tweet.text,
tweet.created_at
)
More Examples: examples
Contributing
I would like to hear your thoughts and suggestions.
If you have any features you'd like to see added or encounter any issues,
please let me know in the issues section.
Additionally, if you find this library useful, I would appreciate it if you would star this repository or share this library⭐! Thank you very much!
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.5.1.tar.gz
.
File metadata
- Download URL: twikit-1.5.1.tar.gz
- Upload date:
- Size: 69.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 525eda72fd0cef13877df215c255a41cbe1a0874ed52b3418f954275d85632e3 |
|
MD5 | db96af6446c0c534fd9a34d28c667b51 |
|
BLAKE2b-256 | a787e5f70c9d2bb76301907a05fd62b5f5802334b842a0fe88d1c1db0c0db438 |
File details
Details for the file twikit-1.5.1-py3-none-any.whl
.
File metadata
- Download URL: twikit-1.5.1-py3-none-any.whl
- Upload date:
- Size: 83.4 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 | 152ebe61fcb3e913e91f7a38ea9dd4c8f33899b1a3e97d90a69fec108bae1906 |
|
MD5 | 1a1bc751ce424925548b9e9643eda4b6 |
|
BLAKE2b-256 | 36a392c13c44c63d47dc2a6bb91a05d1d6d1c5801199658b6d42d15eebae27be |