Skip to content

Instantly share code, notes, and snippets.

@natitomattis
Forked from lucaspg96/bot.py
Created October 3, 2018 20:35
Show Gist options
  • Save natitomattis/036f540c02ac1d62eb1620e1f815ac9b to your computer and use it in GitHub Desktop.
Save natitomattis/036f540c02ac1d62eb1620e1f815ac9b 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