To execute run the code in python console - python example_gist.py
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 flask | |
from flask import Flask, request | |
from shutil import copyfile | |
import subprocess | |
import base64 | |
#Install flask | |
app = flask.Flask(__name__) | |
app.config["DEBUG"] = True | |
@app.route('/UploadImagedata') | |
def UploadImagedata(): | |
user = request.args.get('user') | |
searchimagedata = str(request.args.get('imagedata')) | |
searchimagedata = searchimagedata.strip() | |
searchimagedata = searchimagedata.lstrip() | |
searchimagedata = searchimagedata.encode() | |
searchimagedata = searchimagedata.replace(' ','+') | |
fh = open("E:\\MobileTestImage2.jpg", "wb") | |
fh.write(searchimagedata.decode('base64')) | |
fh.close() | |
return searchimagedata | |
#http://localhost:5000/UploadImagedata?user=siva&imagedata=XXXX | |
@app.route('/UploadImagedatapost', methods=['POST']) | |
def UploadImagedatapost(): | |
req_data = request.get_json() | |
print (request.is_json) | |
content = request.get_json() | |
print (content) | |
searchimagedata = req_data["imagedata"] | |
print(searchimagedata) | |
data = base64.b64decode(searchimagedata) | |
fh = open("E:\\MobileTestImage2.jpg", "wb") | |
fh.write(data) | |
fh.close() | |
return "data is " + searchimagedata | |
#should be the last line of code | |
app.run(host= '0.0.0.0') |
The following links were useful
link1, link2, chromeextension
Happy Learning!!!
No comments:
Post a Comment