From d633df28f756a14a19a4ff1a4f6a4b8600d1b3b8 Mon Sep 17 00:00:00 2001 From: Lorenz Diener Date: Sun, 6 May 2018 17:46:23 +0200 Subject: Add only_media parameter to timelines --- mastodon/Mastodon.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'mastodon') diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 2e620ba..beccf92 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py @@ -400,6 +400,8 @@ class Mastodon: 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`_. """ if max_id != None: @@ -439,7 +441,7 @@ class Mastodon: limit=limit) @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. @@ -449,7 +451,7 @@ class Mastodon: limit=limit) @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 should not contain the leading #. -- cgit v1.2.3