Sphinx automodule not documenting all modules in python multi-module project
Introduction I have created a web-app python project with the following structure (source files omitted from tree command for clarity) $ tree -I *__pycache__* -L 2 -P *.py my_project/ my_project/ ├── __init__.py ├── backend │ ├── __init__.py │ ├── clients.py │ ├── config.py │ ├── fetchers.py │ ├── filters.py │ ├── logger.py │ ├── matchers.py […]
Sphinx-index.rst file auto update
Is there a way to auto-update index.rst file to include all the .rst files generated?