Created
June 21, 2016 10:02
-
-
Save jb41/d40481febf5a83c0fac1379b7847d000 to your computer and use it in GitHub Desktop.
This file contains 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
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