pvanand commited on
Commit
81ef07f
·
verified ·
1 Parent(s): bd97934

Create electronics_router.py

Browse files
Files changed (1) hide show
  1. routers/electronics_router.py +54 -0
routers/electronics_router.py ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # routers/electronics_router.py
2
+ from fastapi import APIRouter
3
+ from typing import List
4
+ from pydantic import BaseModel
5
+ import random
6
+
7
+ router = APIRouter(prefix="/api/electronics", tags=["electronics"])
8
+
9
+ class ElectronicProduct(BaseModel):
10
+ id: int
11
+ name: str
12
+ category: str
13
+ price: float
14
+ specs: dict
15
+ stock: int
16
+ rating: float
17
+
18
+ @router.get("/products", response_model=List[ElectronicProduct])
19
+ async def get_products():
20
+ # Sample data generator
21
+ categories = ["Smartphones", "Laptops", "Tablets", "Smartwatches"]
22
+ products = []
23
+
24
+ for i in range(20):
25
+ category = random.choice(categories)
26
+
27
+ specs = {
28
+ "Smartphones": {
29
+ "screen": f"{random.choice([5.5, 6.1, 6.7])} inches",
30
+ "storage": f"{random.choice([64, 128, 256, 512])}GB",
31
+ "ram": f"{random.choice([4, 6, 8, 12])}GB",
32
+ "camera": f"{random.choice([12, 48, 64, 108])}MP"
33
+ },
34
+ "Laptops": {
35
+ "screen": f"{random.choice([13, 14, 15.6, 16])} inches",
36
+ "storage": f"{random.choice([256, 512, 1024])}GB SSD",
37
+ "ram": f"{random.choice([8, 16, 32])}GB",
38
+ "processor": f"Core i{random.choice([5, 7, 9])}"
39
+ }
40
+ }.get(category, {"specs": "Basic specifications"})
41
+
42
+ products.append(
43
+ ElectronicProduct(
44
+ id=i + 1,
45
+ name=f"{category} Pro {random.randint(1, 100)}",
46
+ category=category,
47
+ price=round(random.uniform(299.99, 2999.99), 2),
48
+ specs=specs,
49
+ stock=random.randint(0, 100),
50
+ rating=round(random.uniform(3.5, 5.0), 1)
51
+ )
52
+ )
53
+
54
+ return products