Last active
April 21, 2018 21:00
-
-
Save riteshdroid/e6d8d600428401a9551b3827227cd3a0 to your computer and use it in GitHub Desktop.
neq_one
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> | |
<title>404 Not Found</title> | |
<h1>Not Found</h1> | |
<p>The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.</p> |
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='http://127.0.0.1:8090/postjson' | |
hj=requests.post(url,{ | |
"device":"TemperatureSensor", | |
"value":"20", | |
"timestamp":"25/01/2017 10:10:05" | |
}) |
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='http://127.0.0.1:8090/postjson' | |
r = requests.post(url, data={'number': 12524, 'type': 'issue', 'action': 'show'}) | |
print(r.text) | |
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
* Running on http://127.0.0.1:8090/ (Press CTRL+C to quit) | |
127.0.0.1 - - [22/Apr/2018 01:45:54] "POST /postjson/ HTTP/1.1" 404 - | |
127.0.0.1 - - [22/Apr/2018 01:46:01] "GET / HTTP/1.1" 404 - | |
127.0.0.1 - - [22/Apr/2018 01:46:01] "GET /robots.txt HTTP/1.1" 404 - | |
127.0.0.1 - - [22/Apr/2018 01:51:46] "GET / HTTP/1.1" 404 - | |
127.0.0.1 - - [22/Apr/2018 01:51:47] "GET /robots.txt HTTP/1.1" 404 - | |
127.0.0.1 - - [22/Apr/2018 01:52:26] "GET /postjson' HTTP/1.1" 404 - | |
127.0.0.1 - - [22/Apr/2018 01:52:48] "GET /postjson/ HTTP/1.1" 404 - |
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
from flask import Flask | |
from flask import request | |
app = Flask(__name__) | |
@app.route('/postjson', methods = ['POST']) | |
def postJsonHandler(): | |
print (request.is_json) | |
content = request.get_json() | |
print (content) | |
return 'JSON posted' | |
app.run(port= 8090) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment