-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.py
96 lines (81 loc) · 2.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
"""
A lightweight Flask app that renders a form for a user to fill out and then
processes the form data with a student-specified function.
Authors
-------
TODO :)
"""
from flask import Flask, render_template, request
from werkzeug.utils import secure_filename
from utils import FormInputs
import utils
import process
import os
app = Flask(__name__)
app.config['UPLOAD_FOLDER'] = 'uploads/'
"""
Use these global variables to configure the application parameters.
"""
APP_TITLE = '' # Appears at the top of the page.
AUTHORS = '' # Appears underneath the title
FORM_DESCRIPTION = """""" # Appears before the form, to explain the form
"""
Use this variable to design the form that you'd like to present the user with.
This dictionary should be of the form:
{
'field_name': ('Field Label', field_type)
}
The field type is one of the following options:
FormInputs.STRING -- A string input area.
FormInputs.TEXTAREA -- A textarea for large string inputs.
FormInputs.NUMERIC -- A numeric input area.
FormInputs.FILE -- A file upload input.
or an iterable of valid inputs that will be provided to the user to choose
between.
For example, if you were predicting housing prices, this form might look like:
{
'age': ('Age', FormInputs.NUMERIC),
'living_area': ('Size (in square feet)', FormInputs.NUMERIC)
}
If you'd like to provide a set of valid inputs, you can do that as you'd expect:
{
'location': ('Location', ('Palo Alto', 'Stanford', 'Redwood City'))
}
"""
FORM_SPECIFICATION = {
}
"""
--------------------------------------------------------------------------------
You don't need to modify anything below this line, although you're
welcome (and encouraged) to take a look!
--------------------------------------------------------------------------------
"""
@app.context_processor
def inject_globals():
return {
'title': APP_TITLE,
'authors': AUTHORS
}
@app.route('/', methods=['GET', 'POST'])
def main():
form_defaults = dict(request.form)
# Handle file save
FILE_FIELDS = [k for k, v in FORM_SPECIFICATION.items() \
if v[1] is FormInputs.FILE]
for field_name in FILE_FIELDS:
if field_name in request.files \
and (file := request.files[field_name]).filename:
# Save the file
filename = secure_filename(file.filename)
save_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
file.save(save_path)
# Update the form values
form_defaults.update({field_name: save_path})
msg = None
if any(form_defaults.values()):
msg = process.process(**form_defaults)
form = utils.Form(FORM_SPECIFICATION, defaults=form_defaults)
return render_template('index.html',
form=form,
desc=FORM_DESCRIPTION,
msg=msg)