Hi I am trying to get the tweets that has an unique keyword and posted from a specific user with tweepy.
I wrote the code below but I can't get all tweets. How can I fix this issue?
def get_tweet_keyword_from_user(keyword, user):
tweets = tw.Cursor(api.search_tweets, q=keyword + " from:" + user, tweet_mode='extended', count=100).items()
for tweet in tweets:
print(tweet.full_text)
return