fix: add misskey.py to requirements #7

Merged
waifu merged 3 commits from dev into master 2025-05-17 09:37:17 -07:00
2 changed files with 13 additions and 0 deletions
Showing only changes of commit 640c68a81a - Show all commits

5
bot/client.py Normal file
View file

@ -0,0 +1,5 @@
import misskey
import config
def client_connection():
return misskey.Misskey(address=config.INSTANCE, i=config.KEY)

8
bot/config.py Normal file
View file

@ -0,0 +1,8 @@
# Essential for the bot to function
INSTANCE = "" # Bots Misskey instance's URL **with schema**
KEY = "" # API key for the bot
# Extra stuff for control of the bot
ADMINS = [] # Fedi handles in the traditional 'user@domain.tld' style,
# allows these users to use extra admin exclusive commands
# with the bot