gfcapalbo / python-twitter

Automatically exported from code.google.com/p/python-twitter
Apache License 2.0
0 stars 0 forks source link

Feature Request: page parameter in GetUserTimeline #79

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Requests are limited to a status count of 200, but passing a page parameter 
allows to get back in 
history to up to 3200 statuses. It would be great if a page parameter would be 
added in the 
GetUserTimeline method.

I myself added it in my local install, and it works like a charm.
Would be happy to see it in the official one too.

Best regards,

pjan

Original issue reported on code.google.com by pjan.van...@gmail.com on 6 Jul 2009 at 3:50

GoogleCodeExporter commented 9 years ago
Looking the code in the SVN repo this has already been included.  

  def GetUserTimeline(self,
                      id=None,
                      user_id=None,
                      screen_name=None,
                      since_id=None,
                      max_id=None,
                      count=None,
                      page=None):

Original comment by jeremyro...@fastmail.fm on 3 Aug 2009 at 11:03