Made an epic showcase website and API!
This commit is contained in:
parent
9e21e4dbdd
commit
1907fad7c5
89 changed files with 36444 additions and 3 deletions
31
projects/Day 15/data.py
Normal file
31
projects/Day 15/data.py
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
menu = {
|
||||
"espresso": {
|
||||
"ingredients": {
|
||||
"water": 50,
|
||||
"coffee": 18,
|
||||
},
|
||||
"cost": 1.5,
|
||||
},
|
||||
"latte": {
|
||||
"ingredients": {
|
||||
"water": 200,
|
||||
"milk": 150,
|
||||
"coffee": 24,
|
||||
},
|
||||
"cost": 2.5,
|
||||
},
|
||||
"cappuccino": {
|
||||
"ingredients": {
|
||||
"water": 250,
|
||||
"milk": 100,
|
||||
"coffee": 24,
|
||||
},
|
||||
"cost": 3.0,
|
||||
}
|
||||
}
|
||||
|
||||
resources = {
|
||||
"water": 300,
|
||||
"milk": 200,
|
||||
"coffee": 100,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue