Managing Tweepy API Search
Please forgive me if this is a gross repeat of a question previously answered elsewhere, but I am lost on how to use the tweepy API search function. Is there any documentation available on how to search for tweets using the api.search() function? Is there any way I can control features such as number of tweets returned, results type etc.? The results seem to max out at 100 for some reason. the code snippet I use is as follows searched_tweets = self.api.search(q=query,rpp=100,count=1000) gumption I originally worked out a solution based on Yuva Raj 's suggestion to use additional parameters in