This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
import requests | |
# Send Message to Push Me App via HTTP POST Request. | |
# This mimics the Curl headers. | |
def PostAlert(secret_tok, msg): | |
url = 'https://pushmeapi.jagcesar.se' | |
data='title=' + msg + '&token=' + secret_tok | |
headers = {'Host': 'pushmeapi.jagcesar.se', 'User-Agent': 'curl/7.55.1', 'Accept': '*/*', \ | |
'Content-Length': str(len(data)), 'content-type': 'application/x-www-form-urlencoded'} | |
r = requests.post(url, data, headers=headers) |