Add only_media parameter to timelines

This commit is contained in:
Lorenz Diener 2018-05-06 17:46:23 +02:00
pare 65cca26297
commit d633df28f7

Veure arxiu

@ -400,6 +400,8 @@ class Mastodon:
The default timeline is the "home" timeline. The default timeline is the "home" timeline.
Media only queries are supported via the `timeline_public()`_ and `timeline_hashtag()`_ functions.
Returns a list of `toot dicts`_. Returns a list of `toot dicts`_.
""" """
if max_id != None: if max_id != None:
@ -439,7 +441,7 @@ class Mastodon:
limit=limit) limit=limit)
@api_version("1.0.0", "2.0.0") @api_version("1.0.0", "2.0.0")
def timeline_public(self, max_id=None, since_id=None, limit=None): def timeline_public(self, max_id=None, since_id=None, limit=None, only_media=False):
""" """
Fetches the public / visible-network timeline, not including replies. Fetches the public / visible-network timeline, not including replies.
@ -449,7 +451,7 @@ class Mastodon:
limit=limit) limit=limit)
@api_version("1.0.0", "2.0.0") @api_version("1.0.0", "2.0.0")
def timeline_hashtag(self, hashtag, local=False, max_id=None, since_id=None, limit=None): def timeline_hashtag(self, hashtag, local=False, max_id=None, since_id=None, limit=None, only_media=False):
""" """
Fetch a timeline of toots with a given hashtag. The hashtag parameter Fetch a timeline of toots with a given hashtag. The hashtag parameter
should not contain the leading #. should not contain the leading #.