使用 sphinx 的自动模块 ( https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html ) 时,
我只是写在一个 .rst 文件中:
.. automodule:: my_module
:members:
它很好地记录了 my_module,但没有找到像 my_module.inner_module0 和 my_module.inner_module1 这样的内部模块。除了 __all__ 变量之外,是否需要在 __init__.py 文件中指定一些内容?
另外,我知道sphinx-apidoc
. 但是该命令的文档太多了(暴露了每个函数/文件夹,包括未记录的函数/文件夹)。