forked from Terrillc13/SpyceByte
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.py
More file actions
22 lines (22 loc) · 995 Bytes
/
data.py
File metadata and controls
22 lines (22 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
def Blends():
blends = [
{
'id': 1,
'name': 'Cajun Seasoning Blend',
'ingredients': '2 1/2 tablespoons sea salt, 1 tablespoon oregano, 1 tablespoon paprika, 1 tablespoon cayenne pepper, 1 tablespoon black pepper1 teaspoon onion powder, 1 teaspoon garlic powder',
'create_date': '03-06-2019 07:36 PM'
},
{
'id': 2,
'name': 'Pumpkin Pie Spice Blend',
'ingredients': '4 1/2 tablespoons cinnamon, 1 tablespoon ginger, 1 tablespoon nutmeg, 1 tablespoon allspice, 2 teaspoons ground cloves',
'create_date': '03-06-2019 07:36 PM'
},
{
'id': 3,
'name': 'Homemade Chili Seasoning',
'ingredients': '1 tbsp chili powder, 1 tsp garlic powder, 1 tsp cumin, 1 tsp oregano, 1/2 tsp paprika, 1/2 tsp onion powder, 1/4 tsp thyme',
'create_date': '03-06-2019 07:36 PM'
}
]
return blends