diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/index.rst | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/docs/index.rst b/docs/index.rst index cb4610e..61aa916 100644 --- a/docs/index.rst +++ b/docs/index.rst | |||
@@ -54,10 +54,11 @@ node running Mastodon by setting `api_base_url` when creating the | |||
54 | API object (or creating an app). | 54 | API object (or creating an app). |
55 | 55 | ||
56 | Mastodon.py aims to implement the complete public Mastodon API. As | 56 | Mastodon.py aims to implement the complete public Mastodon API. As |
57 | of this time, it is feature complete for Mastodon version 3.0.1. Pleroma's | 57 | of this time, it is feature complete for Mastodon version 3.5.0. The |
58 | Mastodon API layer, while not an official target, should also be basically | 58 | Mastodon compatible API layers of various other pieces of software as well |
59 | as forks, while not an official target, should also be basically | ||
59 | compatible, and Mastodon.py does make some allowances for behaviour that isn't | 60 | compatible, and Mastodon.py does make some allowances for behaviour that isn't |
60 | strictly like that of Mastodon. | 61 | strictly like that of Mastodon, and attempts to support extensions to the API. |
61 | 62 | ||
62 | A note about rate limits | 63 | A note about rate limits |
63 | ------------------------ | 64 | ------------------------ |
@@ -376,9 +377,12 @@ Mention dicts | |||
376 | 'id': # Mentioned user's (local) account ID | 377 | 'id': # Mentioned user's (local) account ID |
377 | } | 378 | } |
378 | 379 | ||
379 | Scheduled toot dicts | 380 | Scheduled status / toot dicts |
380 | ~~~~~~~~~~~~~~~~~~~~ | 381 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
382 | .. _scheduled status dict: | ||
383 | .. _scheduled status dicts: | ||
381 | .. _scheduled toot dict: | 384 | .. _scheduled toot dict: |
385 | .. _scheduled toot dicts: | ||
382 | 386 | ||
383 | .. code-block:: python | 387 | .. code-block:: python |
384 | 388 | ||
@@ -987,7 +991,9 @@ is specified, Mastodon.py defaults to https. | |||
987 | .. automethod:: Mastodon.log_in | 991 | .. automethod:: Mastodon.log_in |
988 | .. _auth_request_url(): | 992 | .. _auth_request_url(): |
989 | .. automethod:: Mastodon.auth_request_url | 993 | .. automethod:: Mastodon.auth_request_url |
990 | .. automedhod:: Mastodon.revoke_access_token | 994 | .. _set_language(): |
995 | .. automethod:: Mastodon.set_language | ||
996 | .. automethod:: Mastodon.revoke_access_token | ||
991 | .. automethod:: Mastodon.create_account | 997 | .. automethod:: Mastodon.create_account |
992 | .. automethod:: Mastodon.email_resend_confirmation | 998 | .. automethod:: Mastodon.email_resend_confirmation |
993 | 999 | ||