Skip to content

Instantly share code, notes, and snippets.

@lucaspg96
Last active November 11, 2024 17:26
Show Gist options
  • Save lucaspg96/284c9dbe01d05d0563fde8fbb00db220 to your computer and use it in GitHub Desktop.
Save lucaspg96/284c9dbe01d05d0563fde8fbb00db220 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)
@Omokami
Copy link

Omokami commented Nov 11, 2024

@everyone

Are there any instances of sending messages using TypeScript?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment