xxxxxxxxxx
import requests
bot_token = 'your telegram bot token'
my_chatID = 'your chat ID'
message = "ur message goes here"
send_alert = 'https://api.telegram.org/bot' + bot_token + '/sendMessage?chat_id=' + my_chatID + '&parse_mode=Markdown&text=' + "*" + message + "*"
response = requests.get(send_alert)
response.json()