-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
50 lines (40 loc) · 1.29 KB
/
main.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
from flask import Flask, render_template, Response, request
import json
from io import BytesIO
app = Flask(__name__)
@app.route("/", methods=["GET", "POST"])
def index():
data = read_json()
return render_template(
"generic.html",
speaker=data["speaker"],
speaker_designation=data["speaker_designation"],
title=data["title"],
date=data["date"],
time=data["time"],
venue=data["venue"],
abstract=data["abstract"],
)
@app.route("/process_form", methods=["POST"])
def process_form():
# Retrieve the selected option value from the form submission
selected_option = request.form["view"]
data = read_json()
# Render the corresponding HTML template based on the selected option
return render_template(
selected_option,
speaker=data["speaker"],
speaker_designation=data["speaker_designation"],
title=data["title"],
date=data["date"],
time=data["time"],
venue=data["venue"],
abstract=data["abstract"],
)
def read_json(json_file="data.json"):
file = open(json_file) # Opening JSON file
data = json.load(file) # returns JSON object as a dictionary
file.close() # Closing file
return data
if __name__ == "__main__":
app.run(debug=True)