-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathserver.py
43 lines (32 loc) · 1.05 KB
/
server.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
from flask import Flask, render_template, request, redirect, url_for, jsonify
from calcuMLator import estimate
app = Flask(__name__, static_folder="docs")
op_strings = estimate.conf['types']
method_strings = estimate.conf['estimators']
@app.route('/')
def index():
return app.send_static_file('index.html')
@app.route('/<path:path>')
def static_file(path):
return app.send_static_file(path)
@app.route('/compute')
def compute():
n1 = request.args.get('n1')
n2 = request.args.get('n2')
op = request.args.get('op')
method = request.args.get('method')
if not all([n1, n2, op]) or op not in op_strings or method not in\
method_strings or not is_number(n1) or not is_number(n2):
return jsonify({'result': 'wrong query'})
else:
result = estimate.predict(float(n1), float(n2), op, method)
return jsonify({'result': result})
@app.errorhandler(404)
def page_not_found(e):
return redirect('/')
def is_number(s):
try:
float(s)
return True
except ValueError:
return False