2024! X / Twitter API scrapper with authorization support. Allows you to scrape search results, User's profiles (followers/following), Tweets (favoriters/retweeters) and more.
I'm trying to scrape replies to a large number of tweets for a research study. I've noticed that tweet_replies only scrapes up to 10 replies (ranges between 8-10), even though manually searching up a tweet by tweet ID shows that the parent tweet has far more than 10 replies. Can this possibly be addressed, or am I using the function incorrectly?
async for tweet in self.api.tweet_replies(twid=tweet_id, limit=-1): ...
Hi,
I'm trying to scrape replies to a large number of tweets for a research study. I've noticed that
tweet_replies
only scrapes up to 10 replies (ranges between 8-10), even though manually searching up a tweet by tweet ID shows that the parent tweet has far more than 10 replies. Can this possibly be addressed, or am I using the function incorrectly?async for tweet in self.api.tweet_replies(twid=tweet_id, limit=-1): ...