Add warning if Plenus is On or Off

This commit is contained in:
stef-devs 2022-06-25 10:57:54 +02:00
parent db93417345
commit 2afe4d03b1
1 changed files with 14 additions and 1 deletions

View File

@ -453,7 +453,6 @@ def convertmoney(message):
sent_msg = bot.send_message(message.chat.id, "In che valuta vuoi convertire?")
bot.register_next_step_handler(sent_msg, convertmoney_step)
def convertmoney_step(message):
text = message.text
c = CurrencyConverter()
@ -467,4 +466,18 @@ def convertmoney_step2(message, second):
example = c.convert(many, 'EUR', second)
bot.send_message(message.chat.id, str(example))
#Plenus is off or on?
while True:
try:
x = requests.get('https://plenusbot.xyz')
if x.status_code == 200:
logging.info("Plenus ON!")
time.sleep(3600)
except requests.exceptions.ConnectionError:
bot.send_message(771375637, "Plenus è OFF!")
time.sleep(3600)
except KeyboardInterrupt:
logging.info("Il bot è stato spento con successo!")
break
bot.polling()