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)
| 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): |