I am currently using Tweepy to access the Twitter API for some sentiment analysis. However, when I run the following code:
auth = tweepy.OAuthHandler(consumer_key,consumer_secret)
auth.set_access_token(access_token,access_token_secret)
api = tweepy.API(auth, wait_on_rate_limit = True)
public_tweets = api.search('Donald Trump')
I only get 14 tweets? Is There any way to retrieve more/specify that you want more?? Any help would be much appreciated!!