I am using Twython to get popular tweets. However I am only getting 15 per search function call. I already tried passing the count argument to the function to get more but it keeps returning 15.
Here is the code:
result = twitter.search(q='a', count=100, result_type='popular')
for item in result['statuses']:
print(item['text'].encode('ascii', 'ignore'))
I also tried setting count='100' and count="100" but it is the same.
Thank you.