diff options
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/Mastodon.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 08075a7..c69fe9e 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -380,6 +380,15 @@ class Mastodon: | |||
380 | """ | 380 | """ |
381 | return self.__api_request('GET', '/api/v1/accounts/' + str(id) + '/followers') | 381 | return self.__api_request('GET', '/api/v1/accounts/' + str(id) + '/followers') |
382 | 382 | ||
383 | def follows(self, uri): | ||
384 | """ | ||
385 | Follow a remote user by uri (username@domain). | ||
386 | |||
387 | Returns a user dict. | ||
388 | """ | ||
389 | params = self.__generate_params(locals()) | ||
390 | return self.__api_request('POST', '/api/v1/follows', params) | ||
391 | |||
383 | def account_relationships(self, id): | 392 | def account_relationships(self, id): |
384 | """ | 393 | """ |
385 | Fetch relationships (following, followed_by, blocking) of the logged in user to | 394 | Fetch relationships (following, followed_by, blocking) of the logged in user to |