aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/index.rst')
-rw-r--r--docs/index.rst29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/index.rst b/docs/index.rst
index c0aebb7..b9fcde1 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -756,6 +756,21 @@ Preference dicts
756 # content warnings by default 756 # content warnings by default
757 } 757 }
758 758
759Featured tag dicts
760~~~~~~~~~~~~~~~~~~
761.. _featured tag dict:
762
763.. code-block:: python
764
765 mastodon.featured_tags()[0]
766 # Returns the following dictionary:
767 {
768 'id': # The featured tags id
769 'name': # The featured tags name (without leading #)
770 'statuses_count': # Number of publicly visible statuses posted with this hashtag that this instance knows about
771 'last_status_at': # The last time a public status containing this hashtag was added to this instances database
772 # (can be None if there are none)
773 }
759 774
760Admin account dicts 775Admin account dicts
761~~~~~~~~~~~~~~~~~~~ 776~~~~~~~~~~~~~~~~~~~
@@ -907,6 +922,13 @@ their relationships.
907.. automethod:: Mastodon.account_relationships 922.. automethod:: Mastodon.account_relationships
908.. automethod:: Mastodon.account_search 923.. automethod:: Mastodon.account_search
909 924
925Reading data: Featured tags
926~~~~~~~~~~~~~~~~~~~~~~~~~~~
927These functions allow retrieving info about a users featured and suggested tags.
928
929.. automethod:: Mastodon.featured_tags
930.. automethod:: Mastodon.featured_tag_suggestions
931
910Reading data: Keyword filters 932Reading data: Keyword filters
911----------------------------- 933-----------------------------
912These functions allow you to get information about keyword filters. 934These functions allow you to get information about keyword filters.
@@ -1058,6 +1080,13 @@ These functions allow you to interact with other accounts: To (un)follow and
1058.. automethod:: Mastodon.account_unpin 1080.. automethod:: Mastodon.account_unpin
1059.. automethod:: Mastodon.account_update_credentials 1081.. automethod:: Mastodon.account_update_credentials
1060 1082
1083Writing data: Featured tags
1084~~~~~~~~~~~~~~~~~~~~~~~~~~~
1085These functions allow setting which tags are featured on a users profile.
1086
1087.. automethod:: Mastodon.featured_tag_create
1088.. automethod:: Mastodon.featured_tag_delete
1089
1061Writing data: Keyword filters 1090Writing data: Keyword filters
1062----------------------------- 1091-----------------------------
1063These functions allow you to manipulate keyword filters. 1092These functions allow you to manipulate keyword filters.
Powered by cgit v1.2.3 (git 2.41.0)