diff options
author | Lorenz Diener <[email protected]> | 2017-04-26 11:42:56 +0200 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2017-04-26 11:42:56 +0200 |
commit | d5362139a7f0c3f73feb78f1504d255b38555c8f (patch) | |
tree | 30c07017c87032640f8c06c9bcc617f9a8b83687 | |
parent | 67aa919f4002cdf6e45897373e95499815f5fc40 (diff) | |
download | mastodon.py-d5362139a7f0c3f73feb78f1504d255b38555c8f.tar.gz |
Fix for one dict block, to be done for all
-rw-r--r-- | docs/index.rst | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/docs/index.rst b/docs/index.rst index df85c17..cba55f3 100644 --- a/docs/index.rst +++ b/docs/index.rst | |||
@@ -88,18 +88,18 @@ User dicts | |||
88 | mastodon.account(<numerical id>) | 88 | mastodon.account(<numerical id>) |
89 | # Returns the following dictionary: | 89 | # Returns the following dictionary: |
90 | { | 90 | { |
91 | 'display_name': The user's display name | 91 | 'display_name': # The user's display name |
92 | 'acct': The user's account name as username@domain (@domain omitted for local users) | 92 | 'acct': # The user's account name as username@domain (@domain omitted for local users) |
93 | 'following_count': How many people they follow | 93 | 'following_count': # How many people they follow |
94 | 'url': Their URL; usually 'https://mastodon.social/users/<acct>' | 94 | 'url': # Their URL; usually 'https://mastodon.social/users/<acct>' |
95 | 'statuses_count': How many statuses they have | 95 | 'statuses_count': # How many statuses they have |
96 | 'followers_count': How many followers they have | 96 | 'followers_count': # How many followers they have |
97 | 'avatar': URL for their avatar | 97 | 'avatar': # URL for their avatar |
98 | 'note': Their bio | 98 | 'note': # Their bio |
99 | 'header': URL for their header image | 99 | 'header': # URL for their header image |
100 | 'id': Same as <numerical id> | 100 | 'id': # Same as <numerical id> |
101 | 'username': The username (what you @ them with) | 101 | 'username': # The username (what you @ them with) |
102 | 'locked': Denotes whether the account can be followed without a follow request | 102 | 'locked': # Denotes whether the account can be followed without a follow request |
103 | } | 103 | } |
104 | 104 | ||
105 | Toot dicts | 105 | Toot dicts |