-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFakeMenuItems.py
27 lines (24 loc) · 1.06 KB
/
FakeMenuItems.py
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
#Fake Restaurants
restaurant = {'name': 'The CRUDdy Crab', 'id': '1'}
restaurants = [{'name': 'The CRUDdy Crab', 'id': '1'},
{'name':'Blue Burgers', 'id':'2'},
{'name':'Taco Hut', 'id':'3'}]
#Fake Menu Items
items = [ {'name':'Cheese Pizza',
'description':'made with fresh cheese',
'price':'$5.99','course' :'Entree', 'id':'1'},
{'name':'Chocolate Cake',
'description':'made with Dutch Chocolate',
'price':'$3.99', 'course':'Dessert','id':'2'},
{'name':'Caesar Salad',
'description':'with fresh organic vegetables',
'price':'$5.99', 'course':'Entree','id':'3'},
{'name':'Iced Tea',
'description':'with lemon',
'price':'$.99', 'course':'Beverage','id':'4'},
{'name':'Spinach Dip',
'description':'creamy dip with fresh spinach',
'price':'$1.99', 'course':'Appetizer','id':'5'} ]
item = {'name':'Cheese Pizza',
'description':'made with fresh cheese',
'price':'$5.99','course' :'Entree'}