generated from readthedocs/tutorial-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lumache.py
41 lines (31 loc) · 1011 Bytes
/
lumache.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
"""
Lumache - Python library for cooks and food lovers.
"""
__version__ = "0.1.0"
class InvalidKindError(Exception):
"""Raised if the kind is invalid."""
pass
def get_random_ingredients(kind=None):
"""
Return a list of random ingredients as strings.
:param kind: Optional "kind" of ingredients.
:type kind: list[str] or None
:raise lumache.InvalidKindError: If the kind is invalid.
:return: The ingredients list.
:rtype: list[str]
"""
return ["shells", "gorgonzola", "parsley"]
def get_ingredient_by_kind(kind=None):
"""
Return a list of random ingredients as strings.
:param kind: Optional "kind" of ingredients.
:type kind: str
:raise lumache.InvalidKindError: If the kind is invalid.
:return: The ingredients of the chosen "kind".
:rtype: list[str]
"""
if kind == "chesse":
return ["mozzarela", "cheddar"]
elif kind == "meat":
return ["beef", "pork"]
return ["shells", "gorgonzola", "parsley"]