Relative Content

Tag Archive for pythondocumentationsphinx

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 […]