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

时间:2012-03-02 13:59:21

标签: python python-sphinx documentation-generation api-doc

我正在尝试清理我的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
   """

2 个答案:

答案 0 :(得分:11)

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

这里记录了:http://sphinx.pocoo.org/domains.html#signatures

答案是:param ________

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

答案 1 :(得分:2)

添加此答案以合并选项:

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

epydoc使用格式' @param var:'

Doxygen面向更广泛的语言

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