python-twitter
python-twitter copied to clipboard
GetUserTimeLine request count
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?