pimpybot/config.py.example

16 lines
353 B
Plaintext
Raw Normal View History

2017-11-10 16:31:12 +00:00
# Telegram bot token, as [BotFather](http://tg.me/BotFather) sends it.
2017-11-10 16:25:56 +00:00
TG_TOKEN = '<getthisfrombotfather>'
# Dictionary from Telegram user ID to their via API access token.
USER_TOKENS = {
12345678: 'access_token'
}
# Dictionary from Telegram to via group ID.
VIA_GROUPS = {
-1020304050: 12,
2017-11-10 16:31:12 +00:00
}
VIA_SCHEME = 'http'
VIA_HOST = 'localhost:5000'