-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.py
38 lines (30 loc) · 970 Bytes
/
bot.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 telebot
# import sched, time
import threading
from generator import Generator
token = open('tgbot_token.txt').read().strip()
# вот этот — https://t.me/wandering_tokamak
chat_id = '@wandering_tokamak'
bot = telebot.TeleBot(token)
# функция, отправляющая в канал
def send_to_channel():
print('started')
# пытаемся пока не получится
while True:
try:
# генерируем картинку
gen = Generator()
image = gen.generate()
print('generated')
# отправляем в канал
bot.send_photo(chat_id=chat_id, photo=image)
print('sent')
break
except Exception as e:
print(e)
# raise e
# спим...
print('sleeping...')
threading.Timer(10.0, send_to_channel).start()
send_to_channel()