forked from BluCloudEngineer/UWA-Workflows-in-GitHub-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.py
46 lines (35 loc) · 1.01 KB
/
application.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
"""
Python Flask Calculator Web Application
"""
# Imports
import math
from flask import Flask, render_template, request
# Initialise the Flask application
# You must use the word "application" for this to work in AWS
application = Flask(__name__)
# Add routes
@application.route("/")
def index():
"""
Return the main calculator webpage
"""
return render_template("index.html")
@application.route("/calculate", methods=["POST"])
def calculate():
"""
Perform mathematical operations and return the result to
the main calculator webpage
"""
# Required values
result = None
operation = request.form["operation"]
number_1 = float(request.form["number_1"])
# Perform mathematical operations
if operation == "custom_log_base":
base = float(request.form["number_2"])
result = math.log(number_1, base)
return render_template("index.html", result=result)
# Run the Flask application
if __name__ == "__main__":
application.debug = True
application.run()