Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Sphinx — combining automodule and autoclass

I try to create a html documentation for a project containing several thousand classes using sphinx and it's autodoc plugin. sphinx-apidoc creates wonderful rst-files, but lacks of an automatic creation of autoclasses and automethods.

Is there a way/command/utility in sphinx to auto-include all variables, functions, classes and decorators in the documentation?

Some sample code of one rst-file:

tagger Package
=================

:mod:`tagger` Package
------------------------
.. automodule:: project.tagger
    :members:


:mod:`client` Module
--------------------
.. automodule:: project.analyzers.tagger.client
    :members:
share|improve this question
Have you already checked the autodoc extension? – Rik Poggi Jan 2 at 10:23
the autodoc extension is added in the conf.py: extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode'] Sphinx detects all modules but it doesn't list the classes and it methods. – Philipp Jan 2 at 10:28

marked as duplicate by lunaryorn, Don Kirkby, Blachshma, competent_tech, bmargulies Jan 5 at 2:05

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

There is sphinx extension which will help you in this.

Extension is autodoc.

If you want to include the class then you have to write

.. autoclass:: <ClassName>

Slly for method.

share|improve this answer
2  
I use autodoc. This means that I would have to add ..autoclass more than thousand times or create a script. Isn't there an autodetection? – Philipp Jan 2 at 10:35
You can use automodule If you want to automatically document members, there’s a members option. Please check the link. There are many option in the autodoc extension. – Lafada Jan 2 at 10:40

Not the answer you're looking for? Browse other questions tagged or ask your own question.