geethareddy commited on
Commit
5ae5381
·
verified ·
1 Parent(s): 59bb4d9

Create menu_data.py

Browse files
Files changed (1) hide show
  1. menu_data.py +74 -0
menu_data.py ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ menu_items = {
2
+ "Tikka Murgh (Chicken)": {
3
+ "cost": "$16",
4
+ "image": "static/images/tikka_murgh.png",
5
+ "nutrition": "Calories: 220, Protein: 20g, Fat: 10g, Carbs: 5g",
6
+ "portion": "1 Plate (250g)"
7
+ },
8
+ "Jhinga (Shrimp)": {
9
+ "cost": "$18",
10
+ "image": "static/images/jhinga_shrimp.png",
11
+ "nutrition": "Calories: 200, Protein: 18g, Fat: 8g, Carbs: 2g",
12
+ "portion": "1 Plate (200g)"
13
+ },
14
+ "Murgh Malai Kabab": {
15
+ "cost": "$17",
16
+ "image": "static/images/murgh_malai.png",
17
+ "nutrition": "Calories: 250, Protein: 22g, Fat: 12g, Carbs: 6g",
18
+ "portion": "1 Plate (220g)"
19
+ },
20
+ "Plain Dosai": {
21
+ "cost": "$11",
22
+ "image": "static/images/plain_dosai.png",
23
+ "nutrition": "Calories: 150, Protein: 3g, Fat: 5g, Carbs: 25g",
24
+ "portion": "1 Dosai (100g)"
25
+ },
26
+ "Cheese Dosai": {
27
+ "cost": "$12",
28
+ "image": "static/images/cheese_dosai.png",
29
+ "nutrition": "Calories: 250, Protein: 8g, Fat: 12g, Carbs: 30g",
30
+ "portion": "1 Dosai (120g)"
31
+ },
32
+ "Egg Dosai": {
33
+ "cost": "$12",
34
+ "image": "static/images/egg_dosai.png",
35
+ "nutrition": "Calories: 300, Protein: 12g, Fat: 10g, Carbs: 28g",
36
+ "portion": "1 Dosai (130g)"
37
+ },
38
+ "Masala Dosai": {
39
+ "cost": "$12",
40
+ "image": "static/images/masala_dosai.png",
41
+ "nutrition": "Calories: 200, Protein: 4g, Fat: 6g, Carbs: 30g",
42
+ "portion": "1 Dosai (120g)"
43
+ },
44
+ "Mysore Masala Dosai": {
45
+ "cost": "$13",
46
+ "image": "static/images/mysore_dosai.png",
47
+ "nutrition": "Calories: 220, Protein: 4g, Fat: 8g, Carbs: 32g",
48
+ "portion": "1 Dosai (120g)"
49
+ },
50
+ "Kheema Dosai (Goat)": {
51
+ "cost": "$15",
52
+ "image": "static/images/kheema_dosai.png",
53
+ "nutrition": "Calories: 280, Protein: 15g, Fat: 15g, Carbs: 20g",
54
+ "portion": "1 Dosai (150g)"
55
+ },
56
+ "Plain Naan": {
57
+ "cost": "$3",
58
+ "image": "static/images/plain_naan.png",
59
+ "nutrition": "Calories: 150, Protein: 3g, Fat: 4g, Carbs: 25g",
60
+ "portion": "1 Piece"
61
+ },
62
+ "Butter Naan": {
63
+ "cost": "$3",
64
+ "image": "static/images/butter_naan.png",
65
+ "nutrition": "Calories: 180, Protein: 3g, Fat: 6g, Carbs: 25g",
66
+ "portion": "1 Piece"
67
+ },
68
+ "Garlic Naan": {
69
+ "cost": "$4",
70
+ "image": "static/images/garlic_naan.png",
71
+ "nutrition": "Calories: 200, Protein: 4g, Fat: 8g, Carbs: 30g",
72
+ "portion": "1 Piece"
73
+ }
74
+ }