You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to retrieve someone's tweets I haven't found a way to retrieve their threads.
The only way it works for me is if I retrieve the tweet individually with get_tweet_by_id, but I hope there is a workaround for doing it this way:
user = await client.get_user_by_screen_name("example")
tweets = await user.get_tweets("Tweets")
for tweet in tweets:
print(tweet.thread)
The text was updated successfully, but these errors were encountered:
Trying to retrieve someone's tweets I haven't found a way to retrieve their threads.
The only way it works for me is if I retrieve the tweet individually with get_tweet_by_id, but I hope there is a workaround for doing it this way:
The text was updated successfully, but these errors were encountered: