max_id
and since_id
are parameters for the api.user_timeline()
method.
Using the tweepy.Cursor()
object might look something like this:
tweets = [] for tweet in tweepy.Cursor(api.user_timeline, screen_name=<twitter_handle>, since_id = <since_id> ).items(<count>): tweets.append(tweet)
source share