aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2016-11-25 20:46:20 +0100
committerLorenz Diener <[email protected]>2016-11-25 20:46:20 +0100
commit6fdf18eebc4458f542009c61907fa2dd22b050ea (patch)
tree7d69ce349d381f66358a568c563b988ac184ecef /docs/index.rst
parent10eda366d56ff9ea97e8509af935ddadcc5d176d (diff)
downloadmastodon.py-6fdf18eebc4458f542009c61907fa2dd22b050ea.tar.gz
Documentation for notifications
Diffstat (limited to 'docs/index.rst')
-rw-r--r--docs/index.rst22
1 files changed, 19 insertions, 3 deletions
diff --git a/docs/index.rst b/docs/index.rst
index eb4bd27..d7ade82 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -57,6 +57,8 @@ User dicts
57~~~~~~~~~~ 57~~~~~~~~~~
58.. code-block:: python 58.. code-block:: python
59 59
60 mastodon.account(<numerical id>)
61 # Returns the following dictionary:
60 { 62 {
61 'display_name': The user's display name 63 'display_name': The user's display name
62 'acct': The user's account name as username@domain (@domain omitted for local users) 64 'acct': The user's account name as username@domain (@domain omitted for local users)
@@ -100,7 +102,7 @@ Relationship dicts
100.. code-block:: python 102.. code-block:: python
101 103
102 mastodon.account_follow(<numerical id>) 104 mastodon.account_follow(<numerical id>)
103 # Returns 105 # Returns the following dictionary:
104 { 106 {
105 'followed_by': Boolean denoting whether they follow you back 107 'followed_by': Boolean denoting whether they follow you back
106 'following': Boolean denoting whether you follow them 108 'following': Boolean denoting whether you follow them
@@ -108,12 +110,26 @@ Relationship dicts
108 'blocking': Boolean denoting whether you are blocking them 110 'blocking': Boolean denoting whether you are blocking them
109 } 111 }
110 112
113Notification dicts
114~~~~~~~~~~~~~~~~~~
115.. code-block:: python
116
117 mastodon.notifications()
118 # Returns the following dictionary:
119 {
120 'id': id of the notification.
121 'type': "mention", "reblog", "favourite" or "follow".
122 'status': In case of "mention", the mentioning status.
123 In case of reblog / favourite, the reblogged / favourited status.
124 'account': User dict of the user from whom the notification originates.
125 }
126
111Context dicts 127Context dicts
112~~~~~~~~~~~~~ 128~~~~~~~~~~~~~
113.. code-block:: python 129.. code-block:: python
114 130
115 mastodon.status_context(<numerical id>) 131 mastodon.status_context(<numerical id>)
116 # Returns 132 # Returns the following dictionary:
117 { 133 {
118 'descendants': A list of toot dicts 134 'descendants': A list of toot dicts
119 'ancestors': A list of toot dicts 135 'ancestors': A list of toot dicts
@@ -124,7 +140,7 @@ Media dicts
124.. code-block:: python 140.. code-block:: python
125 141
126 mastodon.media_post("image.jpg", "image/jpeg") 142 mastodon.media_post("image.jpg", "image/jpeg")
127 # Returns 143 # Returns the following dictionary:
128 { 144 {
129 'text_url': The display text for the media (what shows up in toots) 145 'text_url': The display text for the media (what shows up in toots)
130 'preview_url': The URL for the media preview 146 'preview_url': The URL for the media preview
Powered by cgit v1.2.3 (git 2.41.0)