forked from Joe2824/Smart-Bartender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drinks.py
61 lines (60 loc) · 1011 Bytes
/
drinks.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# drinks.py
drink_list = [
{
"name": "Rum & Coke",
"ingredients": {
"rum": 50,
"coke": 150
}
}, {
"name": "Gin & Tonic",
"ingredients": {
"gin": 50,
"tonic": 150
}
}, {
"name": "Long Island",
"ingredients": {
"gin": 15,
"rum": 15,
"vodka": 15,
"tequila": 15,
"coke": 100,
"oj": 30
}
}, {
"name": "Screwdriver",
"ingredients": {
"vodka": 50,
"oj": 150
}
}, {
"name": "Margarita",
"ingredients": {
"tequila": 50,
"mmix": 150
}
}, {
"name": "Gin & Juice",
"ingredients": {
"gin": 50,
"oj": 150
}
}, {
"name": "Tequila Sunrise",
"ingredients": {
"tequila": 50,
"oj": 150
}
}
]
drink_options = [
{"name": "Gin", "value": "gin"},
{"name": "Rum", "value": "rum"},
{"name": "Vodka", "value": "vodka"},
{"name": "Tequila", "value": "tequila"},
{"name": "Tonic Water", "value": "tonic"},
{"name": "Coke", "value": "coke"},
{"name": "Orange Juice", "value": "oj"},
{"name": "Margarita Mix", "value": "mmix"}
]