WinDog/LibWinDog/Config.py

55 lines
1.2 KiB
Python
Raw Normal View History

2023-07-25 00:35:27 +02:00
# ================================== #
# WinDog multi-purpose chatbot #
# Licensed under AGPLv3 by OctoSpacc #
# ================================== #
MastodonUrl = ''
MastodonToken = ''
TelegramId = 1637713483
TelegramToken = ''
TelegramAdmins = [ 123456789, ]
TelegramWhitelist = [ 123456789, ]
TelegramRestrict = False
2023-07-25 00:35:27 +02:00
2023-11-19 00:27:51 +01:00
AdminIds = [ "123456789@telegram", "admin@activitypub@mastodon.example.com", ]
2023-07-25 00:35:27 +02:00
DefaultLang = 'en'
Debug = False
Dumper = False
CmdPrefixes = '.!/'
# False: ASCII output; True: ANSI Output (must be escaped)
ExecAllowed = {'date': False, 'fortune': False, 'neofetch': True, 'uptime': False}
WebUserAgent = f'WinDog v.Staging'
Endpoints = {
"start": cStart,
"help": cHelp,
#"config": cConfig,
"source": cSource,
"ping": cPing,
"echo": cEcho,
2023-11-19 00:27:51 +01:00
"broadcast": cBroadcast,
#"repeat": cRepeat,
"wish": percenter,
"level": percenter,
#"hug": multifun,
#"pat": multifun,
#"poke": multifun,
#"cuddle": multifun,
#"floor": multifun,
#"hands": multifun,
#"sessocto": multifun,
"hash": cHash,
#"time": cTime,
"eval": cEval,
"exec": cExec,
#"format": cFormat,
#"frame": cFrame,
"embedded": cEmbedded,
"web": cWeb,
"translate": cTranslate,
"unsplash": cUnsplash,
"safebooru": cSafebooru,
}