Skip to content

Instantly share code, notes, and snippets.

@directionsystems
Forked from lucaspg96/bot.py
Created October 3, 2019 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save directionsystems/48f5885812576989dae2738afe803fba to your computer and use it in GitHub Desktop.
Save directionsystems/48f5885812576989dae2738afe803fba to your computer and use it in GitHub Desktop.
A python script to send messages to a telegram user. Useful to notify when long scripts are finished!
#This script is independet of lib or python version (tested on python 2.7 and 3.5)
import telegram
#token that can be generated talking with @BotFather on telegram
my_token = ''
def send(msg, chat_id, token=my_token):
"""
Send a mensage to a telegram user specified on chatId
chat_id must be a number!
"""
bot = telegram.Bot(token=token)
bot.sendMessage(chat_id=chat_id, text=msg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment