1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00
royalnet/telegram.py
2017-02-07 22:35:19 +01:00

28 lines
843 B
Python

import requests
import asyncio
import functools
loop = asyncio.get_event_loop()
# Load Telegram API key from the telegramtoken.txt file
file = open("telegramtoken.txt", "r")
token = file.read()
file.close()
class TelegramError(Exception):
pass
# Send a message
async def send_message(msg: str, to: int):
print("[Telegram] Sending a message: " + msg)
# Send the message
params = {
"chat_id": to,
"text": msg,
"parse_mode": "Markdown"
}
r = await loop.run_in_executor(None, functools.partial(requests.get, params=params),
"https://api.telegram.org/bot{token}/sendMessage".format(token=token))
if r.status_code == 200:
return
else:
raise TelegramError("Something went wrong in the Telegram request: {}".format(r.json()["description"]))