Answer the question
In order to leave comments, you need to log in
How to send push notifications from Telegram Bot?
Is it possible to send notifications from Telegram bot? For example, this is implemented in the weather bot
. How to do this in python?
Tried like this
import datetime
import time
report = 'test'
time_now = datetime.datetime.now().time()
report_hour = 17
report_minute = 20
while time_now.hour != report_hour and time_now.minute != report_minute:
time_now = datetime.datetime.now().time()
time.sleep(0.5)
else:
print report
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question