Add telegram backend for sending messages.
This commit is contained in:
parent
c5be1882f8
commit
6cebd436b8
|
@ -0,0 +1,11 @@
|
|||
import requests
|
||||
|
||||
|
||||
def send(tg_config, message):
|
||||
url = "https://api.telegram.org/bot{}/sendMessage".format(
|
||||
tg_config["bot_token"])
|
||||
data = {
|
||||
"chat_id": tg_config["user_id"],
|
||||
"text": message
|
||||
}
|
||||
requests.post(url, data=data)
|
Loading…
Reference in New Issue