-
Notifications
You must be signed in to change notification settings - Fork 4
3. Getting Started
This page will guide you through the initial steps needed to start using PyTweetToolkit, from obtaining authentication cookies to performing basic Twitter operations like posting a tweet and following a user.
To interact with Twitter through PyTweetToolkit, you need to provide authentication cookies. Here's how to retrieve them:
- Log in to your Twitter account in a web browser.
- Access the developer tools by right-clicking on the page and selecting "Inspect", or use the shortcut
Ctrl+Shift+I
(orCmd+Option+I
on Mac).
- Within the developer tools, locate the "Application" or "Storage" tab where cookie information is stored.
- Look for the cookies related to the Twitter website, specifically
auth_token
andct0
.
- Double-click on the
auth_token
andct0
cookies to copy their values.
- In your script, use the copied values to replace
YOUR_AUTH_TOKEN
andYOUR_CSRF_TOKEN
.
# Replace YOUR_AUTH_TOKEN and YOUR_CSRF_TOKEN with the actual values.
auth_token = "YOUR_AUTH_TOKEN"
csrf_token = "YOUR_CSRF_TOKEN"
Ensure that you keep these tokens secure and do not share them, as they grant access to your Twitter account.
Below is a simple example to demonstrate how you can use PyTweetToolkit to post a tweet and follow a user.
from PyTweetToolkit import PyTweetClient
# Initialize the client with your authentication tokens
client = PyTweetClient(auth_token=auth_token, csrf_token=csrf_token)
# Post a tweet
client.post_tweet("Hello, world! #MyFirstTweet")
# Follow a user by their username
client.follow("python_community")
This example assumes you have set your auth_token
and csrf_token
with the appropriate values obtained as per the instructions above.
For more examples and detailed usage patterns, refer to the Examples page.