Using pip3 install twitter
for a small Python program to retrieve all user's tweets in total year.
utl = t.statuses.user_timeline(count = n, screen_name = name)
Got a error about rate limits, as it shows:
details: {'errors': [{'code': 88, 'message': 'Rate limit exceeded'}]}
After checking api docs, https://dev.twitter.com/rest/public/rate-limiting, but no idea how to fix it.
Hopefully, anyone could help. Thanks!