diff options
author | Lorenz Diener <[email protected]> | 2019-10-12 19:14:03 +0200 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2019-10-12 19:14:03 +0200 |
commit | 037b7ddd1722a44e4152098221d1e207d8c54d34 (patch) | |
tree | 50911bac23749ebac24671aa4c4cac19d01b3bf0 /mastodon | |
parent | 73c1e9e2d99bc76ffe4320b0a9045562613789ac (diff) | |
download | mastodon.py-037b7ddd1722a44e4152098221d1e207d8c54d34.tar.gz |
Some documentation clarification
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/Mastodon.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 4551cbf..f019ec7 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -610,7 +610,7 @@ class Mastodon: | |||
610 | """ | 610 | """ |
611 | Retrieve basic information about the instance, including the URI and administrative contact email. | 611 | Retrieve basic information about the instance, including the URI and administrative contact email. |
612 | 612 | ||
613 | Does not require authentication. | 613 | Does not require authentication unless locked down by the administrator. |
614 | 614 | ||
615 | Returns an `instance dict`_. | 615 | Returns an `instance dict`_. |
616 | """ | 616 | """ |
@@ -658,6 +658,8 @@ class Mastodon: | |||
658 | The default timeline is the "home" timeline. | 658 | The default timeline is the "home" timeline. |
659 | 659 | ||
660 | Media only queries are supported via the `timeline_public()`_ and `timeline_hashtag()`_ functions. | 660 | Media only queries are supported via the `timeline_public()`_ and `timeline_hashtag()`_ functions. |
661 | |||
662 | May or may not require authentication depending on server settings and what is specifically requested. | ||
661 | 663 | ||
662 | Returns a list of `toot dicts`_. | 664 | Returns a list of `toot dicts`_. |
663 | """ | 665 | """ |
@@ -949,7 +951,7 @@ class Mastodon: | |||
949 | """ | 951 | """ |
950 | Fetch account information by user `id`. | 952 | Fetch account information by user `id`. |
951 | 953 | ||
952 | Does not require authentication. | 954 | Does not require authentication for publicly visible accounts. |
953 | 955 | ||
954 | Returns a `user dict`_. | 956 | Returns a `user dict`_. |
955 | """ | 957 | """ |
@@ -989,7 +991,7 @@ class Mastodon: | |||
989 | If `exclude_replies` is set, filter out all statuses that are replies. | 991 | If `exclude_replies` is set, filter out all statuses that are replies. |
990 | 992 | ||
991 | Does not require authentication for Mastodon versions after 2.7.0 (returns | 993 | Does not require authentication for Mastodon versions after 2.7.0 (returns |
992 | publicly visible statuses in that case). | 994 | publicly visible statuses in that case), for publicly visible accounts. |
993 | 995 | ||
994 | Returns a list of `toot dicts`_. | 996 | Returns a list of `toot dicts`_. |
995 | """ | 997 | """ |
@@ -1431,7 +1433,7 @@ class Mastodon: | |||
1431 | """ | 1433 | """ |
1432 | Fetch the list of custom emoji the instance has installed. | 1434 | Fetch the list of custom emoji the instance has installed. |
1433 | 1435 | ||
1434 | Does not require authentication. | 1436 | Does not require authentication unless locked down by the administrator. |
1435 | 1437 | ||
1436 | Returns a list of `emoji dicts`_. | 1438 | Returns a list of `emoji dicts`_. |
1437 | 1439 | ||