Skip to content

Instantly share code, notes, and snippets.

@jb41
Created June 21, 2016 10:02
Show Gist options
  • Save jb41/d40481febf5a83c0fac1379b7847d000 to your computer and use it in GitHub Desktop.
Save jb41/d40481febf5a83c0fac1379b7847d000 to your computer and use it in GitHub Desktop.
import requests
url = 'https://sheetsu.com/apis/YOUR_API_ID'
data = {"timestamp": "1458819671995", "idea": "wooho"}
r = requests.post(url, json=data)
print r.status_code
print r.json()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment