Skip to content

Instantly share code, notes, and snippets.

@siam28
Forked from mxpr/dashing-requests.py
Created December 22, 2016 23:54
Show Gist options
  • Save siam28/aa23bb8fe045816be47663bf5a23429c to your computer and use it in GitHub Desktop.
Save siam28/aa23bb8fe045816be47663bf5a23429c to your computer and use it in GitHub Desktop.
Example of how to send data to dashing from python
# http://stackoverflow.com/questions/20211990/sending-data-curl-json-in-python
import requests #pip install requests
import simplejson as json #pip install simplejson
url = "http://<ip-address>:3030"
widget = "welcome"
data = { "auth_token": "YOUR_AUTH_TOKEN", "text": "Python Greetings!!" }
fullUrl = "%s/widgets/%s" % (url, widget)
headers = {'Content-type': 'application/json'}
requests.post(fullUrl, data=json.dumps(data), headers=headers)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment