aboutsummaryrefslogtreecommitdiff
blob: 7fe37e5ec9b88953a520edabeda7e3f356df6dac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
Accounts, relationships and lists
=================================
.. py:module:: mastodon
.. py:class: Mastodon

Accounts
--------
These functions allow you to get information about accounts and associated data as well as update that data - profile data (incuding pinned statuses and endorsements) for the logged in users account, and notes for everyone else

Reading
~~~~~~~~
.. automethod:: Mastodon.account_verify_credentials
.. automethod:: Mastodon.me

.. automethod:: Mastodon.account
.. automethod:: Mastodon.account_search
.. automethod:: Mastodon.account_lookup

.. automethod:: Mastodon.featured_tags
.. automethod:: Mastodon.featured_tag_suggestions
.. automethod:: Mastodon.account_featured_tags

.. automethod:: Mastodon.endorsements

.. automethod:: Mastodon.account_statuses
.. automethod:: Mastodon.account_following
.. automethod:: Mastodon.account_familiar_followers

.. automethod:: Mastodon.account_lists

Writing
~~~~~~~
.. automethod:: Mastodon.account_update_credentials
    
.. automethod:: Mastodon.account_pin
.. automethod:: Mastodon.account_unpin

.. automethod:: Mastodon.account_note_set

.. automethod:: Mastodon.featured_tag_create
.. automethod:: Mastodon.featured_tag_delete

.. _status_pin():
.. automethod:: Mastodon.status_pin
.. _status_unpin():    
.. automethod:: Mastodon.status_unpin

Following and followers
-----------------------
These functions allow you to get information about the logged in users followers and users that the logged in users follows as well as follow requests and follow suggestions, and to
manage that data - most importantly, follow and unfollow users.

Reading
~~~~~~~
.. automethod:: Mastodon.account_followers
.. automethod:: Mastodon.account_relationships
.. automethod:: Mastodon.follows

.. automethod:: Mastodon.follow_requests

.. automethod:: Mastodon.suggestions

Writing
~~~~~~~
.. _account_follow():
.. automethod:: Mastodon.account_follow
.. automethod:: Mastodon.account_unfollow

.. automethod:: Mastodon.follow_request_authorize
.. automethod:: Mastodon.follow_request_reject

.. automethod:: Mastodon.suggestion_delete

Mutes and blocks
----------------
These functions allow you to get information about accounts and domains that are muted or blocked by the logged in user, and to block and mute users and domains

Reading
~~~~~~~
.. automethod:: Mastodon.mutes
.. automethod:: Mastodon.blocks
.. automethod:: Mastodon.domain_blocks
    
Writing
~~~~~~~
.. automethod:: Mastodon.account_mute
.. automethod:: Mastodon.account_unmute

.. automethod:: Mastodon.account_block
.. automethod:: Mastodon.account_unblock

.. automethod:: Mastodon.account_remove_from_followers

.. automethod:: Mastodon.domain_block
.. automethod:: Mastodon.domain_unblock

Lists
-----
These functions allow you to view information about lists as well as to create and update them.
By default, the maximum number of lists for a user is 50.

Reading
~~~~~~~
.. automethod:: Mastodon.lists
.. automethod:: Mastodon.list
.. automethod:: Mastodon.list_accounts

Writing
~~~~~~~
.. automethod:: Mastodon.list_create
.. automethod:: Mastodon.list_update
.. automethod:: Mastodon.list_delete
.. automethod:: Mastodon.list_accounts_add
.. automethod:: Mastodon.list_accounts_delete
Powered by cgit v1.2.3 (git 2.41.0)