I have the following script:
twitter=Twython(consumer_key, consumer_secret, access_token, access_token_secret)
tags=['#pc', #computer', '#technology']
for tag in tags:
try:
search_results=twitter.search(q=tag, count=200)
except TwythonError as error:
print error
sys.exit()
for tweet in search_results['statuses']:
user = tweet['user']['screen_name'].encode('utf-8')
print user
But when I omit count or change it to 300 it shows me for each tag only 100 results. How can I change it to unlimit results?
[Methods in tweepy module is welcome as well]