如何使用sphinx-apidoc记录Python函数参数

问题描述 投票:16回答:2

我正在尝试清理我的python代码文档,并决定使用sphinx-doc,因为它看起来不错。我喜欢如何使用以下标签引用其他类和方法:

:class:`mymodule.MyClass` About my class.
:meth:`mymodule.MyClass.myfunction` And my cool function

我试图弄清楚如何在函数中记录参数名称,所以如果我有一个像这样的函数:

def do_this(parameter1, parameter2):
   """
   I can describe do_this.

   :something?:`parameter1` And then describe the parameter.

   """

这是最好的做法是什么?

更新:

正确的语法是:

def do_this(parameter1, parameter2):
   """
   I can describe do_this.

   :something parameter1: And then describe the variable
   """
python python-sphinx documentation-generation api-doc
2个回答
11
投票

通常,“函数变量”称为参数;)。

它在此记录:http://sphinx.pocoo.org/domains.html#signatures

答案是:param ________

编辑免责声明:我从未使用或听说过狮身人面像......这篇文章主要是“搜索什么词”。希望它有所帮助。


3
投票

添加此答案以合并选项:

pydoc是基本的,没有特殊的格式

epydoc使用'@ param var:'格式

Doxygen面向更多语言

Sphinx使用格式':param type var:'。另见more examples。这用于创建Python 3.5 documentation

© www.soinside.com 2019 - 2024. All rights reserved.