-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
53 lines (46 loc) · 1.75 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import os,json,shutil
from flask import Flask, request, redirect, url_for
from werkzeug.utils import secure_filename
from rest_api import *
app = Flask(__name__)
cwd = os.getcwd()
UPLOAD_FOLDER = os.path.join(cwd,"uploads")
ALLOWED_EXTENSIONS = set(['png','jpg','jpeg'])
IMAGE_EXTENSIONS=set(['png','jpg','jpeg'])
app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
def allowed_file(filename):
return '.' in filename and \
filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
@app.route('/', methods=['GET', 'POST'])
def upload_file():
if request.method == 'POST':
# check if the post request has the file part
if 'file' not in request.files:
#flash('No file part')
return redirect(request.url)
file = request.files['file']
# if user does not select file, browser also
# submit a empty part without filename
if file.filename == '':
#flash('No selected file')
return redirect(request.url)
if file and allowed_file(file.filename):
filename = secure_filename(file.filename)
file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
if filename.rsplit('.', 1)[1].lower() in IMAGE_EXTENSIONS:
output = race_det(os.path.join(UPLOAD_FOLDER,filename))
output=json.dumps(output)
os.remove(os.path.join(UPLOAD_FOLDER,filename))
return output
return '''
<!doctype html>
<title>Upload new File</title>
<h1>Upload new File</h1>
<form method=post enctype=multipart/form-data>
<p><input type=file name=file>
<input type=submit value=Upload>
</form>
'''
#return
if __name__ == '__main__':
app.run("0.0.0.0",port=8005,threaded=True,debug=False)