-
Notifications
You must be signed in to change notification settings - Fork 0
/
appfl.py
47 lines (38 loc) · 1.5 KB
/
appfl.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
import os
from flask import Flask, request, redirect, url_for, send_from_directory
from werkzeug.utils import secure_filename
import evaluate
UPLOAD_FOLDER = os.getcwd()+'/examples'
ALLOWED_EXTENSIONS = set(['png', 'jpg', 'jpeg'])
app = Flask(__name__)
app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
def allowed_file(filename):
return '.' in filename and \
filename.rsplit('.', 1)[1] in ALLOWED_EXTENSIONS
# @app.route('/up/<path:filename>')
# def download_file(filename):
# print(filename)
# return send_from_directory((app.config['UPLOAD_FOLDER']+'/thumbs/'),
# filename, as_attachment=True)
@app.route('/', methods=['GET', 'POST'])
def upload_file():
if request.method == 'POST':
file = request.files['file']
if file and allowed_file(file.filename):
filename = secure_filename(file.filename)
file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
evaluate.ins=UPLOAD_FOLDER+'/'+filename
evaluate.outs=os.getcwd()+'/examples/thumbs/'+filename
evaluate.main()
return send_from_directory((app.config['UPLOAD_FOLDER']+'/thumbs/'),
filename, as_attachment=True)
return '''
<!doctype html>
<title>Upload new File</title>
<h1>Upload new File</h1>
<form action="" method=post enctype=multipart/form-data>
<p><input type=file name=file>
<input type=submit value=Upload>
</form>
'''
app.run(debug = True)