You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
320 B
11 lines
320 B
import requests |
|
def Pushover(msg: str): |
|
r = requests.post("https://api.pushover.net/1/messages.json", data = { |
|
"token": "aqf7uhxw13p56vg3qu6gptgpbanqe2", |
|
"user": "umjiu36dxwwaj8pnfx3n6y2xbm3ssx", |
|
"message": msg |
|
}, |
|
# files = { |
|
# "attachment": (pic, open(pic, "rb"), "image/png") |
|
# }) |
|
print(r.text) |