Da Sphinx versione 3.1 (giugno 2020), sphinx.ext.autosummary
(finalmente!) Ha una ricorsione.
Quindi non è necessario codificare i nomi dei moduli o fare affidamento su librerie di terze parti come Sphinx AutoAPI o Sphinx AutoPackageSummary per il rilevamento automatico dei pacchetti.
Esempio di pacchetto Python 3.7 da documentare ( vedi codice su Github e risultato su ReadTheDocs ):
mytoolbox
|-- mypackage
| |-- __init__.py
| |-- foo.py
| |-- mysubpackage
| |-- __init__.py
| |-- bar.py
|-- doc
| |-- source
| |--index.rst
| |--conf.py
| |-- _templates
| |-- custom-module-template.rst
| |-- custom-class-template.rst
conf.py
:
import os
import sys
sys.path.insert(0, os.path.abspath('../..')) # Source code dir relative to this file
extensions = [
'sphinx.ext.autodoc', # Core library for html generation from docstrings
'sphinx.ext.autosummary', # Create neat summary tables
]
autosummary_generate = True # Turn on sphinx.ext.autosummary
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
index.rst
(nota la nuova :recursive:
opzione):
Welcome to My Toolbox
=====================
Some words.
.. autosummary::
:toctree: _autosummary
:template: custom-module-template.rst
:recursive:
mypackage
Questo è sufficiente per riepilogare automaticamente tutti i moduli del pacchetto, per quanto profondamente nidificati. Per ogni modulo, quindi riassume ogni attributo, funzione, classe ed eccezione in quel modulo.
Stranamente, tuttavia, i sphinx.ext.autosummary
modelli predefiniti non continuano a generare pagine di documentazione separate per ogni attributo, funzione, classe ed eccezione, e collegamenti ad esse dalle tabelle di riepilogo. È possibile estendere i modelli per farlo, come mostrato di seguito, ma non riesco a capire perché questo non sia il comportamento predefinito - sicuramente è quello che la maggior parte delle persone vorrebbe ..? L'ho sollevato come richiesta di funzionalità .
Ho dovuto copiare i modelli predefiniti localmente e quindi aggiungerli:
- Copia
site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst
inmytoolbox/doc/source/_templates/custom-module-template.rst
- Copia
site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst
inmytoolbox/doc/source/_templates/custom-class-template.rst
L'hook in custom-module-template.rst
è index.rst
sopra, usando l' :template:
opzione. (Elimina quella riga per vedere cosa succede usando i modelli predefiniti di pacchetti di siti.)
custom-module-template.rst
(righe aggiuntive indicate a destra):
{{ fullname | escape | underline}}
.. automodule:: {{ fullname }}
{% block attributes %}
{% if attributes %}
.. rubric:: Module Attributes
.. autosummary::
:toctree: <-- add this line
{% for item in attributes %}
{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
{% block functions %}
{% if functions %}
.. rubric:: {{ _('Functions') }}
.. autosummary::
:toctree: <-- add this line
{% for item in functions %}
{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
{% block classes %}
{% if classes %}
.. rubric:: {{ _('Classes') }}
.. autosummary::
:toctree: <-- add this line
:template: custom-class-template.rst <-- add this line
{% for item in classes %}
{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
{% block exceptions %}
{% if exceptions %}
.. rubric:: {{ _('Exceptions') }}
.. autosummary::
:toctree: <-- add this line
{% for item in exceptions %}
{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
{% block modules %}
{% if modules %}
.. rubric:: Modules
.. autosummary::
:toctree:
:template: custom-module-template.rst <-- add this line
:recursive:
{% for item in modules %}
{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
custom-class-template.rst
(righe aggiuntive indicate a destra):
{{ fullname | escape | underline}}
.. currentmodule:: {{ module }}
.. autoclass:: {{ objname }}
:members: <-- add at least this line
:show-inheritance: <-- plus I want to show inheritance...
:inherited-members: <-- ...and inherited members too
{% block methods %}
.. automethod:: __init__
{% if methods %}
.. rubric:: {{ _('Methods') }}
.. autosummary::
{% for item in methods %}
~{{ name }}.{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
{% block attributes %}
{% if attributes %}
.. rubric:: {{ _('Attributes') }}
.. autosummary::
{% for item in attributes %}
~{{ name }}.{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
ls
verso un file e modificarlo?