File size: 1,528 Bytes
0932d40
f7332b9
 
0932d40
 
 
 
f7332b9
 
0932d40
 
 
 
 
 
 
 
 
 
 
 
 
f7332b9
 
0932d40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f7332b9
 
 
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

import uvicorn

from fastapi import FastAPI, HTTPException
from pydantic import BaseModel
from typing import List

app = FastAPI()

class Item(BaseModel):
    id: int
    name: str
    description: str
    price: float
    quantity: int

items_db: List[Item] = [
    Item(id=1, name="Laptop", description="A powerful laptop", price=1200.50, quantity=10),
    Item(id=2, name="Smartphone", description="A high-end smartphone", price=800.00, quantity=20),
    Item(id=3, name="Headphones", description="Noise-canceling headphones", price=150.00, quantity=50),
]

@app.get("/")
def read_root():
    return {"message": "Welcome to the FastAPI application!"}

@app.get("/items/", response_model=List[Item])
def get_items():
    """
    Get all items.
    """
    return items_db

@app.get("/items/{item_id}", response_model=Item)
def get_item(item_id: int):
    """
    Get an item by its ID.
    """
    item = next((item for item in items_db if item.id == item_id), None)
    if not item:
        raise HTTPException(status_code=404, detail="Item not found")
    return item

@app.post("/items/", response_model=Item)
def create_item(item: Item):
    """
    Add a new item.
    """
    if any(existing_item.id == item.id for existing_item in items_db):
        raise HTTPException(status_code=400, detail="Item with this ID already exists")
    items_db.append(item)
    return item

@app.get("/health")
def health_check():
    return {"status": "OK"}


if __name__ == "__main__":
    uvicorn.run(app, host="0.0.0.0", port=1200)