-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.py
More file actions
241 lines (235 loc) · 10.5 KB
/
app.py
File metadata and controls
241 lines (235 loc) · 10.5 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
from flask import Flask, render_template, request, jsonify
import math
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST']) # To render Homepage
def home_page():
return render_template('index.html')
@app.route('/math', methods=['POST']) # This will be called from UI
def math_operation():
if (request.method=='POST'):
try:
operation=request.form['operation']
num1=int(request.form['num1'])
num2 = int(request.form['num2'])
except:
return "enter the valid number"
if (operation == 'add'):
try:
r = num1 + num2
result = 'the sum of ' + str(num1) + ' and ' + str(num2) + ' is ' + str(r)
except:
return "Enter the appropriate numbers for Addition"
if (operation == 'subtract'):
try:
r = num1 - num2
result = 'the difference of ' + str(num1) + ' and ' + str(num2) + ' is ' + str(r)
except:
return "Enter the appropriate numbers for Subtraction"
if (operation == 'multiply'):
try:
r = num1 * num2
result = 'the product of ' + str(num1) + ' and ' + str(num2) + ' is ' + str(r)
except:
return "Enter the appropriate numbers for Multiplication"
if (operation == 'divide'):
try:
r = num1 / num2
result = 'the quotient when ' + str(num1) + ' is divided by ' + str(num2) + ' is ' + str(r)
except:
return "Enter the appropriate numbers for Division"
if (operation == 'power of'):
try:
r = num1 ** num2
result = 'the value when ' + str(num1) + ' is powered of by ' + str(num2) + ' the value is ' + str(r)
except:
return "Enter the appropriate numbers for powering of"
if (operation == 'greater than'):
try:
if num1 > num2:
r = num1 - num2
result = str(num1) + ' is greater than ' + str(num2) + ' by ' + str(r)
else:
r = num2 - num1
result = str(num2) + ' is greater than ' + str(num1) + ' by ' + str(r)
except:
return "Enter the appropriate numbers for finding greater of"
if (operation == 'lesser than'):
try:
if num1 < num2:
r = num2 - num1
result = str(num1) + ' is lesser than ' + str(num2) + ' by ' + str(r)
else:
r = num1 - num2
result = str(num2) + ' is lesser than ' + str(num1) + ' by ' + str(r)
except:
return "Enter the appropriate numbers for finding lesser than"
if (operation == 'equal to'):
try:
if num1 == num2:
result = str(num1) + ' is equal to ' + str(num2)
else:
result = str(num1) + ' is not equal to ' + str(num2)
except:
return "Enter the appropriate numbers for finding equal to"
if (operation == 'square root'):
try:
result1 = math.sqrt(num1)
result2 = math.sqrt(num2)
result = "The Square root of Value1 and Value2 is " + str(result1) + ' and ' + str(
result2) + ' respectively '
except:
return "Enter the appropriate numbers for finding square root"
if (operation == 'cube root'):
try:
result1 = round(math.pow(num1, 1 / 3))
result2 = round(math.pow(num2, 1 / 3))
result = "The Cube root of Value1 and Value2 is " + str(result1) + ' and ' + str(result2) + ' respectively '
except:
return "Enter the appropriate numbers for finding cube root"
if (operation == 'percent of'):
try:
result1 = round((num1 / num2) * 100)
result = "The Value1 is " + str(result1) + ' % of ' + 'Value2'
except:
return "Enter the appropriate numbers for finding the percentage of"
if (operation == 'difference'):
try:
result1 = abs(num1 - num2)
result = "The difference between Value1 and Value2 is " + str(result1)
except:
return "Enter the valid number"
if (operation == '(a+b)2'):
try:
result1 = (num1 ** 2 + num2 ** 2 + 2 * num1 * num2)
result = "The (Value1+Value2)^2 value is " + str(result1)
except:
return "Enter the valid number"
if (operation == '(a-b)2'):
try:
result1 = (num1 ** 2 + num2 ** 2 - 2 * num1 * num2)
result = "The (Value1-Value22)^2 value is " + str(result1)
except:
return "Enter the valid number"
if (operation == 'cube of'):
try:
result1 = (num1 * num1 * num1)
result2 = (num2 * num2 * num2)
result = "The Cube value of Value1 and Value2 is " + str(result1) + ' and ' + str(result2) + ' respectively'
except:
return "Enter the valid number"
return render_template('results.html',result=result)
@app.route('/via_postman', methods=['POST']) # for calling the API from Postman/SOAPUI
def math_operation_via_postman():
if (request.method=='POST'):
try:
operation=request.json['operation']
num1=int(request.json['num1'])
num2 = int(request.json['num2'])
except:
return "enter the valid number"
if(operation=='add'):
try:
r=num1+num2
result= 'the sum of '+str(num1)+' and '+str(num2) +' is '+str(r)
except:
return "Enter the appropriate numbers for Addition"
if (operation == 'subtract'):
try:
r = num1 - num2
result = 'the difference of ' + str(num1) + ' and ' + str(num2) + ' is ' + str(r)
except:
return "Enter the appropriate numbers for Subtraction"
if (operation == 'multiply'):
try:
r = num1 * num2
result = 'the product of ' + str(num1) + ' and ' + str(num2) + ' is ' + str(r)
except:
return "Enter the appropriate numbers for Multiplication"
if (operation == 'divide'):
try:
r = num1 / num2
result = 'the quotient when ' + str(num1) + ' is divided by ' + str(num2) + ' is ' + str(r)
except:
return "Enter the appropriate numbers for Division"
if (operation == 'power of'):
try:
r = num1 ** num2
result = 'the value when ' + str(num1) + ' is powered of by ' + str(num2) + ' the value is ' + str(r)
except:
return "Enter the appropriate numbers for powering of"
if (operation == 'greater than'):
try:
if num1 > num2:
r = num1 - num2
result = str(num1) + ' is greater than ' +str(num2) + ' by ' +str(r)
else:
r = num2 - num1
result = str(num2) + ' is greater than ' + str(num1) + ' by ' + str(r)
except:
return "Enter the appropriate numbers for finding greater of"
if (operation == 'lesser than'):
try:
if num1 < num2:
r = num2 - num1
result = str(num1) +' is lesser than ' + str(num2) +' by ' +str(r)
else:
r = num1 - num2
result = str(num2) + ' is lesser than ' + str(num1) + ' by ' + str(r)
except:
return "Enter the appropriate numbers for finding lesser than"
if (operation == 'equal to'):
try:
if num1 == num2:
result = str(num1) + ' is equal to ' + str(num2)
else:
result = str(num1) + ' is not equal to ' + str(num2)
except:
return "Enter the appropriate numbers for finding equal to"
if (operation == 'square root'):
try:
result1 = math.sqrt(num1)
result2 = math.sqrt(num2)
result = "The Square root of Value1 and Value2 is " + str(result1) + ' and '+ str(result2) + ' respectively '
except:
return "Enter the appropriate numbers for finding square root"
if (operation == 'cube root'):
try:
result1 = round(math.pow(num1, 1/3))
result2 = round(math.pow(num2, 1/3))
result = "The Cube root of Value1 and Value22 is " + str(result1) + ' and ' + str(result2) + ' respectively '
except:
return "Enter the appropriate numbers for finding cube root"
if (operation == 'percent of'):
try:
result1 = round((num1/num2) * 100)
result = "The Value1 is " + str(result1) + ' % of ' + 'Value22'
except:
return "Enter the appropriate numbers for finding the percentage of"
if (operation == 'difference'):
try:
result1 = abs(num1-num2)
result = "The difference between Value1 and Value2 is " + str(result1)
except:
return "Enter the valid number"
if (operation == '(a+b)2'):
try:
result1 = (num1**2 + num2**2 + 2*num1*num2)
result = "The (Value1+Value2)^2 value is " + str(result1)
except:
return "Enter the valid number"
if (operation == '(a-b)2'):
try:
result1 = (num1**2 + num2**2 - 2*num1*num2)
result = "The (Value1-Value2)^2 value is " + str(result1)
except:
return "Enter the valid number"
if (operation == 'cube of'):
try:
result1 = (num1*num1*num1)
result2 = (num2*num2*num2)
result = "The Cube value of Value1 and Value2 is " + str(result1) + ' and '+ str(result2) + ' respectively'
except:
return "Enter the valid number"
return jsonify(result)
if __name__ == '__main__':
app.run(debug=True)