-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathtg.py
38 lines (29 loc) · 1002 Bytes
/
tg.py
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
38
import argparse
from telebot import TeleBot
from handlers import list_available_commands, load_handlers
def main():
# Init args
parser = argparse.ArgumentParser()
parser.add_argument("tg_token", help="tg token")
# 'disable-command' option
# The action 'append' will allow multiple entries to be saved into a list
# The variable name is changed to 'disable_commands'
parser.add_argument(
"--disable-command",
action="append",
dest="disable_commands",
help="Specify a command to disable. Can be used multiple times.",
default=[],
choices=list_available_commands(),
)
options = parser.parse_args()
print("Arg parse done.")
# Init bot
bot = TeleBot(options.tg_token)
load_handlers(bot, options.disable_commands)
print("Bot init done.")
# Start bot
print("Starting tg collections bot.")
bot.infinity_polling(timeout=10, long_polling_timeout=5)
if __name__ == "__main__":
main()