You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
619 B

6 months ago
from datetime import datetime
import time
import telebot
from db import *
db = read_db()
bot = telebot.TeleBot(db['token'])
while True:
now = datetime.now()
current_time = now.strftime("%H:%M")
if current_time == "16:10":
db = read_db()
for i in db:
if i != "token" and db[i] != 0:
text = ''
for j in i:
text += f"{db[i][j]}\n"
db[i][j] = 0
write_db(db)
bot.send_message(int(j),
text,
parse_mode='HTML')
time.sleep(61)