diff options
-rw-r--r-- | mastodon/Mastodon.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index e6fbcf2..dec8413 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -2338,14 +2338,14 @@ class Mastodon: | |||
2338 | """ | 2338 | """ |
2339 | Fetches a list of accounts that match given criteria. By default, local accounts are returned. | 2339 | Fetches a list of accounts that match given criteria. By default, local accounts are returned. |
2340 | 2340 | ||
2341 | Set `remote` to True to get remote accounts, otherwise local accounts are returned (default: local accounts) | 2341 | * Set `remote` to True to get remote accounts, otherwise local accounts are returned (default: local accounts) |
2342 | Set `by_domain` to a domain to get only accounts from that domain. | 2342 | * Set `by_domain` to a domain to get only accounts from that domain. |
2343 | Set `status` to one of "active", "pending", "disabled", "silenced" or "suspended" to get only accounts with that moderation status (default: active) | 2343 | * Set `status` to one of "active", "pending", "disabled", "silenced" or "suspended" to get only accounts with that moderation status (default: active) |
2344 | Set `username` to a string to get only accounts whose username contains this string. | 2344 | * Set `username` to a string to get only accounts whose username contains this string. |
2345 | Set `display_name` to a string to get only accounts whose display name contains this string. | 2345 | * Set `display_name` to a string to get only accounts whose display name contains this string. |
2346 | Set `email` to an email to get only accounts with that email (this only works on local accounts). | 2346 | * Set `email` to an email to get only accounts with that email (this only works on local accounts). |
2347 | Set `ip` to an ip (as a string, standard v4/v6 notation) to get only accounts whose last active ip is that ip (this only works on local accounts). | 2347 | * Set `ip` to an ip (as a string, standard v4/v6 notation) to get only accounts whose last active ip is that ip (this only works on local accounts). |
2348 | Set `staff_only` to True to only get staff accounts (this only works on local accounts). | 2348 | * Set `staff_only` to True to only get staff accounts (this only works on local accounts). |
2349 | 2349 | ||
2350 | Note that setting the boolean parameters to False does not mean "give me users to which this does not apply" but | 2350 | Note that setting the boolean parameters to False does not mean "give me users to which this does not apply" but |
2351 | instead means "I do not care if users have this attribute". | 2351 | instead means "I do not care if users have this attribute". |