-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py.example
37 lines (30 loc) · 1.3 KB
/
config.py.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""
This file contains all configuration variables that are needed to by this bot.
"""
# Token that you get from BotFather.
BOT_TOKEN =
# Telegram IDs of people who can run certain priviledged commands.
# #To get id see for example https://t.me/rawdatabot
BOT_ADMINS = []
# ID of chat where daily backup and consumption notifications are sent.
# To get id add https://t.me/rawdatabot to group.
ADMIN_CHAT =
# ID of chat where messages sent to bot are forwarded.
MESSAGING_CHAT =
# ID of Google Sheets where database is backed up. You can get ID from URL
# like this https://docs.google.com/spreadsheets/d/<ID>/some/stuff
INVENTORY_SHEET_ID =
USERS_SHEET_ID =
TRANSACTIONS_SHEET_ID =
# Dictionary that contains calendars to follow as calendar name: calendar
# ID pairs.
GOOGLE_CALENDARS = {
"FK Tapahtumat": "[email protected]",
"FK Kokoukset": "[email protected]",
"FK Fuksit": "[email protected]",
"FK Kulttuuri": "[email protected]",
"FK Liikunta": "[email protected]",
"FK Ura ja opinnot": "[email protected]"
}
# Base URL to to fiirumi.
FIIRUMI_POSTS_URL = "https://fiirumi.fyysikkokilta.fi"