-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
48 lines (38 loc) · 1.17 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
import re
from flask import Flask, jsonify, render_template, request
app = Flask(__name__)
@app.route('/hello', methods=['GET'])
def helloworld():
data = {"data": "Helloo World"}
return jsonify(data)
@app.route('/operation', methods=["POST"])
def calculate():
# JSON veriyi al
data = request.get_json()
# Verileri kontrol et
if not data or 'number1' not in data or 'operator' not in data or 'number2' not in data:
return jsonify(error="Eksik veya hatalı veri"), 400
# Değişkenleri ata
num1 = int(data['number1'])
op = data['operator']
num2 = int(data['number2'])
# Hesaplama
result = 0
if op == '+':
result = num1 + num2
elif op == '-':
result = num1 - num2
elif op == '*':
result = num1 * num2
elif op == '/':
if num2 == 0:
return jsonify(error="Sıfıra bölme hatası"), 400
result = num1 / num2
else:
return jsonify(error="Geçersiz operatör"), 400
# JSON yanıtını oluştur
response = {"result": result}
# Yanıtı geri gönder
return jsonify(response)
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)