hello world

This commit is contained in:
LickTheCheese 2019-12-30 11:49:32 -05:00
parent 50b563d219
commit df4f7ba353
2 changed files with 13 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
auth.py
__pycache__/

12
bot.py Normal file
View File

@ -0,0 +1,12 @@
from mastodon import Mastodon
import auth
mastodon = Mastodon(
access_token = auth.token,
api_base_url = 'https://tilde.zone/'
)
mastodon.status_post("hello world!")