Twitter-Sentiment-Analysis
Twitter-Sentiment-Analysis copied to clipboard
API call limit
How to avoid the following error?
Traceback (most recent call last):
File "tweet.py", line 30, in
thanks
Add wait_on_rate_limit=True on the API call like this:
api = tweepy.API(auth, wait_on_rate_limit=True)
This will make the rest of the code obey the rate limit