diff options
Diffstat (limited to 'toot.py')
-rw-r--r-- | toot.py | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ | |||
1 | from mastodon import Mastodon | ||
2 | from config import TOOT_API_BASE_URL, TOOT_CLIENT_SECRET, TOOT_ACCESS_TOKEN, TOOT_CLIENT_ID | ||
3 | |||
4 | ''' | ||
5 | https://mastodonpy.readthedocs.io/en/stable/index.html | ||
6 | ''' | ||
7 | |||
8 | mastodon_client = Mastodon(client_id=TOOT_CLIENT_ID, | ||
9 | client_secret=TOOT_CLIENT_SECRET, | ||
10 | api_base_url=TOOT_API_BASE_URL, | ||
11 | access_token=TOOT_ACCESS_TOKEN) | ||