1 Star 0 Fork 0

ejsama/mkdocsdemotest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lumache.py 776 Bytes
一键复制 编辑 原始数据 按行查看 历史
ejsama 提交于 2024-07-08 15:18 . build
"""
Lumache - Python library for cooks and food lovers.
This is a Python docstring, we can use Markdown syntax here because
our API documentation library understands it (mkdocstrings).
# 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"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ejsama/mkdocsdemotest.git
[email protected]:ejsama/mkdocsdemotest.git
ejsama
mkdocsdemotest
mkdocsdemotest
main

搜索帮助