I am trying to fetch all organic tweets using GET USER_TIMELINE with the code below -
for status in tweepy.Cursor(api.user_timeline, screen_name = screen_name, count = 200, since_id = max_tweet_id).items()
It does not seem to work as expected using the since_id. Can anyone let me know why ?