?
Once you've set up the appropriate Telegram bot on your Telegram account, sending a message programmatically is pretty easy. ?Here's my (redacted) code for that:
?
#!/usr/bin/env python3
import requests
def send_message(text, parse_mode=None):
bf_token = "YOUR_TOKEN_HERE" # replace this your Bot's token
user_id = 1234567890 # replace this with your user id
assert parse_mode in (None, "HTML", "MarkdownV2")
# from BotFather
url = f"https://api.telegram.org/bot{bf_token}/sendMessage"
params = {"chat_id": user_id, "text": text}
if parse_mode:
params["parse_mode"] = parse_mode
resp = requests.get(url, params=params, timeout=3)
# Throw exception if Telegram API fails
resp.raise_for_status()
if __name__ == "__main__":
from sys import argv
if len(argv) <= 1:
i = 50 // 3
MESSAGE = "```\n" + (f"{3 * i}." * i) + "\n```"
else:
MESSAGE = " ".join(argv[1:])
send_message(MESSAGE, parse_mode="MarkdownV2")