aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/index.rst24
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
105Toot dicts 105Toot dicts
Powered by cgit v1.2.3 (git 2.41.0)