-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
69 lines (55 loc) · 1.9 KB
/
app.py
File metadata and controls
69 lines (55 loc) · 1.9 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
from flask import Flask, request, jsonify
from flask_sqlalchemy import SQLAlchemy
from flask_marshmallow import Marshmallow
import os
#app
app = Flask(__name__)
basedir = os.path.abspath(os.path.dirname(__file__))
#db
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///' + os.path.join(basedir, 'db.sqlite')
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
#intialize db
db = SQLAlchemy(app)
#initialize Marshmallow
ma = Marshmallow(app)
#product model
class Product(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String(100), unique=True)
description = db.Column(db.String(200))
price = db.Column(db.Float)
quantity = db.Column(db.Integer)
def __init__(self, name, description, price, quantity):
self.name = name
self.description = description
self.price = price
self.quantity = quantity
#schema
class ProductSchema(ma.Schema):
class Meta:
fields = ('id', 'name', 'description', 'price', 'quantity')
#initialize schema
product_schema = ProductSchema()
products_schema = ProductSchema(many=True)
@app.route('/product', methods=['POST'])
def add_product():
name = request.json['name']
price = request.json['price']
quantity = request.json['quantity']
description = request.json['description']
new_product = Product(name, description, price, quantity)
db.session.add(new_product)
db.session.commit()
return product_schema.jsonify(new_product)
@app.route('/product', methods=['GET'])
def get_products():
all_products = Product.query.all()
result = products_schema.dump(all_products)
return jsonify(result)
@app.route('/product/<id>', methods=['GET'])
def get_product_by_id(id):
product = Product.query.get(id)
return product_schema.jsonify(product)
#run server
if __name__ == "__main__":
app.run(debug=True)