I need an advice.
I'm trying to understand the Twitter API rate limit.
I have a csv file with approx 10000 Twitter handles.
I need to download tweets and retweets of these users.
If I loop over the handles and download the data - how will this affect the rate limit of Twitter? How many calls can my script make pr hour without being blacklisted?
Would this be possible with Stream API instead?
I'm going to use Python and Tweepy for this.
Thanks in advance.