bear / python-twitter

A Python wrapper around the Twitter API.
Apache License 2.0
3.41k stars 955 forks source link

GetUserTimeLine request count #682

Open barisunsalhn opened 3 years ago

barisunsalhn commented 3 years ago

Function defined as this:

    def GetUserTimeline(self,
                        user_id=None,
                        screen_name=None,
                        since_id=None,
                        max_id=None,
                        count=None,
                        include_rts=True,
                        trim_user=False,
                        exclude_replies=False):

if we provide max_id , how many requests does it send to Twitter? for example UserA posted 20 tweets as : [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, ...] . If I choose 12 as max_id, and count as 200., how many requests are sent?