Skip to content

Instantly share code, notes, and snippets.

@rjames86
Created July 15, 2015 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rjames86/305dab31fb2768c15635 to your computer and use it in GitHub Desktop.
Save rjames86/305dab31fb2768c15635 to your computer and use it in GitHub Desktop.
import httplib
import urllib
def pushover(title, message):
conn = httplib.HTTPSConnection("api.pushover.net:443")
conn.request(
"POST", "/1/messages.json",
urllib.urlencode({
"token": "",
"user": "",
"title": title,
"message": message,
}), {"Content-type": "application/x-www-form-urlencoded"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment