Spaces:
Sleeping
Sleeping
Update components/data.py
Browse files- components/data.py +12 -52
components/data.py
CHANGED
@@ -1,62 +1,22 @@
|
|
1 |
FOOD_DATA = {
|
2 |
-
"
|
3 |
-
"image": "
|
|
|
|
|
4 |
"nutrition": {
|
5 |
-
"Calories": "
|
6 |
-
"Protein": "
|
7 |
-
"
|
8 |
-
"Fats": "36g"
|
9 |
},
|
10 |
-
"portion_size": "250g"
|
11 |
},
|
12 |
"Chicken Biryani": {
|
13 |
"image": "chicken_biryani.jpg",
|
|
|
|
|
14 |
"nutrition": {
|
15 |
-
"Calories": "
|
16 |
-
"Protein": "
|
17 |
-
"
|
18 |
-
"Fats": "20g"
|
19 |
-
},
|
20 |
-
"portion_size": "300g"
|
21 |
-
},
|
22 |
-
"Dosa": {
|
23 |
-
"image": "dosa.jpg",
|
24 |
-
"nutrition": {
|
25 |
-
"Calories": "168 kcal",
|
26 |
-
"Protein": "4g",
|
27 |
-
"Carbs": "30g",
|
28 |
-
"Fats": "3g"
|
29 |
-
},
|
30 |
-
"portion_size": "150g"
|
31 |
-
},
|
32 |
-
"Palak Paneer": {
|
33 |
-
"image": "palak_paneer.jpg",
|
34 |
-
"nutrition": {
|
35 |
-
"Calories": "250 kcal",
|
36 |
-
"Protein": "12g",
|
37 |
-
"Carbs": "10g",
|
38 |
-
"Fats": "18g"
|
39 |
-
},
|
40 |
-
"portion_size": "200g"
|
41 |
-
},
|
42 |
-
"Aloo Curry": {
|
43 |
-
"image": "aloo_curry.jpg",
|
44 |
-
"nutrition": {
|
45 |
-
"Calories": "190 kcal",
|
46 |
-
"Protein": "5g",
|
47 |
-
"Carbs": "25g",
|
48 |
-
"Fats": "8g"
|
49 |
-
},
|
50 |
-
"portion_size": "200g"
|
51 |
-
},
|
52 |
-
"Aloo Samosa": {
|
53 |
-
"image": "aloo_samosa.jpg",
|
54 |
-
"nutrition": {
|
55 |
-
"Calories": "130 kcal",
|
56 |
-
"Protein": "2g",
|
57 |
-
"Carbs": "16g",
|
58 |
-
"Fats": "6g"
|
59 |
},
|
60 |
-
"portion_size": "100g"
|
61 |
},
|
62 |
}
|
|
|
1 |
FOOD_DATA = {
|
2 |
+
"Aloo Samosa": {
|
3 |
+
"image": "aloo_samosa.jpg",
|
4 |
+
"description": "Crispy samosa filled with spiced potatoes. Perfect snack for any time.",
|
5 |
+
"price": 20,
|
6 |
"nutrition": {
|
7 |
+
"Calories": "150 kcal",
|
8 |
+
"Protein": "4 g",
|
9 |
+
"Fat": "7 g"
|
|
|
10 |
},
|
|
|
11 |
},
|
12 |
"Chicken Biryani": {
|
13 |
"image": "chicken_biryani.jpg",
|
14 |
+
"description": "Fragrant basmati rice cooked with tender chicken and aromatic spices.",
|
15 |
+
"price": 200,
|
16 |
"nutrition": {
|
17 |
+
"Calories": "300 kcal",
|
18 |
+
"Protein": "15 g",
|
19 |
+
"Fat": "10 g"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
},
|
|
|
21 |
},
|
22 |
}
|