I am trying to get all tweets from a user in python using lib .
The method provided in python-twitter for this is defined as:
def GetUserTimeline(self, user_id=None, screen_name=None, since_id=None, max_id=None, count=None, include_rts=None, trim_user=None, exclude_replies=None):
Although if the quantity is limited to 200.
Documentation:
amount: Indicates the number of statuses to retrieve. May not be more than 200. [Optional]
Now my question is: Can I get all the tweets from the user using this library? And is there an alternative solution?
source share