MCPcopy Index your code
hub / github.com/ryanmcgrath/twython / get_user_timeline

Method get_user_timeline

twython/endpoints.py:43–51  ·  view source on GitHub ↗

Returns a collection of the most recent Tweets posted by the user indicated by the ``screen_name`` or ``user_id`` parameters. Docs: https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-user_timeline

(self, **params)

Source from the content-addressed store, hash-verified

41 get_mentions_timeline.iter_mode = 'id'
42
43 def get_user_timeline(self, **params):
44 """Returns a collection of the most recent Tweets posted by the user
45 indicated by the ``screen_name`` or ``user_id`` parameters.
46
47 Docs:
48 https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-user_timeline
49
50 """
51 return self.get('statuses/user_timeline', params=params)
52 get_user_timeline.iter_mode = 'id'
53
54 def get_home_timeline(self, **params):

Calls 1

getMethod · 0.80