forked from readthedocs-examples/example-sphinx-basic
-
Notifications
You must be signed in to change notification settings - Fork 2
/
lumache.py
34 lines (23 loc) · 739 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
"""
Lumache - Python library for cooks and food lovers.
This is a Python docstring, we can use reStructuredText syntax here!
.. code-block:: python
# Import lumache
import lumache
# Call its only function
get_random_ingredients(kind=["cheeses"])
"""
__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"]