first Upload

This commit is contained in:
Sebastian Serfling
2025-02-11 12:39:12 +01:00
commit f9662c488e
7 changed files with 2015 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import http.client, urllib
conn = http.client.HTTPSConnection("api.pushover.net:443")
conn.request("POST", "/1/messages.json",
urllib.parse.urlencode({
"token": "avzcexyjeu7y71pcskwshyx8ytmq8i",
"user": "uo2sf2pmrtjvt8auu786fviabimimr",
"message": "Reporting was running!",
}), { "Content-type": "application/x-www-form-urlencoded" })
conn.getresponse()