如何为列出所有属性和方法的类生成存根?

时间:2017-08-18 19:10:14

标签: python-sphinx

我想要的是为我拥有的每个类生成存根,包括所有属性和方法的列表:

project.class
=============

.. currentmodule:: project

.. autoclass:: class

   .. rubric:: Methods

   .. autosummary::

      project.method1
      project.method2

   .. rubric:: Attributes

   .. autosummary::

      project.attribute1
      project.attribute2

我怎样才能做到这一点?似乎sphinx-apidocsphinx-autogen无法达到此目的。

0 个答案:

没有答案