This commit is contained in:
Laurent Peuch 2017-05-20 14:33:49 +00:00 cometido por GitHub
commit cdbe93a01a

Veure arxiu

@ -342,6 +342,8 @@ class Mastodon:
"""
Fetch account information by user id.
To retreive a user id from it's address (user@instance.com), uses the account_search method.
Returns a user dict.
"""
return self.__api_request('GET', '/api/v1/accounts/' + str(id))
@ -358,6 +360,8 @@ class Mastodon:
"""
Fetch statuses by user id. Same options as timeline are permitted.
To retreive a user id from it's address (user@instance.com), uses the account_search method.
Returns a list of toot dicts.
"""
params = self.__generate_params(locals(), ['id'])
@ -367,6 +371,8 @@ class Mastodon:
"""
Fetch users the given user is following.
To retreive a user id from it's address (user@instance.com), uses the account_search method.
Returns a list of user dicts.
"""
params = self.__generate_params(locals(), ['id'])
@ -376,6 +382,8 @@ class Mastodon:
"""
Fetch users the given user is followed by.
To retreive a user id from it's address (user@instance.com), uses the account_search method.
Returns a list of user dicts.
"""
params = self.__generate_params(locals(), ['id'])
@ -386,6 +394,8 @@ class Mastodon:
Fetch relationships (following, followed_by, blocking) of the logged in user to
a given account. id can be a list.
To retreive a user id from it's address (user@instance.com), uses the account_search method.
Returns a list of relationship dicts.
"""
params = self.__generate_params(locals())