Esempio Telegram BOT

Da wiki.gienne.cloud.
Versione del 25 ago 2019 alle 00:53 di Admin (Discussione | contributi)

(diff) ← Versione meno recente | Versione attuale (diff) | Versione più recente → (diff)
import time
import schedule
import requests
def telegram_bot_sendtext(bot_message):
bot_token = '******'
bot_chatID = '****'
send_text = 'https://api.telegram.org/bot' + bot_token + '/sendMessage?chat_id=' + bot_chatID + '&parse_mode=Markdown&text=' + bot_message
response = requests.get(send_text)
return response.json()
def report():
my_message = "Nodo 1 attivo.. porta su alfa 1111"
telegram_bot_sendtext(my_message)
report()