-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPythonWithFlaskService.py
42 lines (33 loc) · 1002 Bytes
/
PythonWithFlaskService.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
# app.py
from flask import Flask, request, jsonify
from datetime import datetime
app = Flask(__name__)
# Dummy data storage
customers = []
orders = []
# Routes for customers
@app.route('/customers', methods=['GET'])
def get_customers():
return jsonify(customers)
@app.route('/customers', methods=['POST'])
def create_customer():
data = request.json
customers.append(data)
return jsonify(data), 201
# Routes for orders
@app.route('/orders', methods=['GET'])
def get_orders():
return jsonify(orders)
@app.route('/orders', methods=['POST'])
def create_order():
data = request.json
data['time'] = datetime.now().isoformat()
orders.append(data)
# Send SMS alert here
send_sms_alert(data)
return jsonify(data), 201
# Dummy function to simulate sending SMS alert
def send_sms_alert(order):
print(f"SMS Alert: New order added - Item: {order['item']}, Amount: {order['amount']}, Time: {order['time']}")
if __name__ == '__main__':
app.run(debug=True)