-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
82 lines (82 loc) · 2.26 KB
/
Copy pathconstants.py
File metadata and controls
82 lines (82 loc) · 2.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
RESTAURANT_MENU = {
"appetizers": [
{
"id": "app_001",
"name": "Caesar Salad",
"description": "Fresh romaine lettuce with Caesar dressing",
"price": 8.99
},
{
"id": "app_002",
"name": "Bruschetta",
"description": "Toasted bread with tomatoes, garlic, and basil",
"price": 7.99
},
{
"id": "app_003",
"name": "Mozzarella Sticks",
"description": "Breaded mozzarella with marinara sauce",
"price": 6.99
}
],
"mains": [
{
"id": "main_001",
"name": "Grilled Salmon",
"description": "Fresh salmon with lemon butter sauce and vegetables",
"price": 22.99
},
{
"id": "main_002",
"name": "Ribeye Steak",
"description": "12oz ribeye with mashed potatoes and asparagus",
"price": 28.99
},
{
"id": "main_003",
"name": "Pasta Carbonara",
"description": "Creamy pasta with bacon and parmesan",
"price": 16.99
},
{
"id": "main_004",
"name": "Margherita Pizza",
"description": "Classic pizza with tomato, mozzarella, and basil",
"price": 14.99
}
],
"desserts": [
{
"id": "dess_001",
"name": "Chocolate Lava Cake",
"description": "Warm chocolate cake with vanilla ice cream",
"price": 7.99
},
{
"id": "dess_002",
"name": "Tiramisu",
"description": "Classic Italian dessert with coffee and mascarpone",
"price": 6.99
}
],
"drinks": [
{
"id": "drink_001",
"name": "Coca Cola",
"description": "Classic cola",
"price": 2.99
},
{
"id": "drink_002",
"name": "Iced Tea",
"description": "Freshly brewed iced tea",
"price": 2.99
},
{
"id": "drink_003",
"name": "Orange Juice",
"description": "Fresh squeezed orange juice",
"price": 3.99
}
]
}