Skip to content

Instantly share code, notes, and snippets.

@TristanAmond
Last active February 21, 2016 22:20
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 TristanAmond/cbff0995a0074bb7231c to your computer and use it in GitHub Desktop.
Save TristanAmond/cbff0995a0074bb7231c to your computer and use it in GitHub Desktop.
def send_notification(self, content):
# bot_id connects with created bot on dev.groupme.com, text is message
payload = {
"bot_id" : "REDACTED",
"text" : content
}
with requests.Session() as c:
c.post("https://api.groupme.com/v3/bots/post", data=payload)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment