sphinx-nested-apidoc: When flattened is not enough
Project description
sphinx-nested-apidoc
When flattened is not enough.
Installation
Use pip
or pip3
to install sphinx-nested-apidoc
pip install sphinx-nested-apidoc
or
pip3 install sphinx-nested-apidoc
Introduction
sphinx-apidoc
is a great tool for generating documentation, but it does not
replicate the directory structure of your package. sphinx-nested-apidoc
aims
to solve that problem.
Usage Overview
Let's say we have the following directory structure of our package:
mymodule/
├── fruits/
│ ├── __init__.py
│ ├── apple.py
│ ├── pear.py
│ ├── guava.py
│ └── mango.py
├── animals/
│ ├── special/
│ │ ├── __init__.py
│ │ ├── doggo.py
│ │ └── catto.py
│ ├── __init__.py
│ ├── bear.py
│ ├── giraffe.py
│ ├── monke.py
│ └── chimp.py
├── __init__.py
├── base.py
├── exceptions.py
└── secret.py
And we want to generate documentation for this package in some directory docs/
.
A short comparison
Let's see the difference.
Using sphinx-apidoc
we get
We use the following command:
sphinx-apidoc -o docs/ mymodule/ -e
It generates:
docs/
├── modules.rst
├── mymodule.animals.bear.rst
├── mymodule.animals.chimp.rst
├── mymodule.animals.giraffe.rst
├── mymodule.animals.monke.rst
├── mymodule.animals.rst
├── mymodule.animals.special.catto.rst
├── mymodule.animals.special.doggo.rst
├── mymodule.animals.special.rst
├── mymodule.base.rst
├── mymodule.exceptions.rst
├── mymodule.fruits.apple.rst
├── mymodule.fruits.guava.rst
├── mymodule.fruits.mango.rst
├── mymodule.fruits.pear.rst
├── mymodule.fruits.rst
├── mymodule.rst
└── mymodule.secret.rst
This is not very clean, obviously.
Using sphinx-nested-apidoc
we get
We use the following command:
sphinx-nested-apidoc -o docs/ mymodule/
It generates:
docs/
├── modules.rst
└── mymodule
├── animals
│ ├── bear.rst
│ ├── chimp.rst
│ ├── giraffe.rst
│ ├── index.rst
│ ├── monke.rst
│ └── special
│ ├── catto.rst
│ ├── doggo.rst
│ └── index.rst
├── base.rst
├── exceptions.rst
├── fruits
│ ├── apple.rst
│ ├── guava.rst
│ ├── index.rst
│ ├── mango.rst
│ └── pear.rst
├── index.rst
└── secret.rst
Looks clean!
Usage Details
usage: sphinx-nested-apidoc [-h] [-v | -q] [--version] [-f] [-n] -o DESTDIR
[-s SUFFIX] [--implicit-namespaces]
module_path ...
Generates nested directory from sphinx-apidoc's flattened files. It is simply
a wrapper over sphinx-apidoc and you can pass additional arguments to it for
extended configuration.
positional arguments:
module_path Path to package to document.
options:
-h, --help show this help message and exit
-v, --verbose Increase application verbosity. This option is
repeatable and will increase verbosity each time it is
repeated. This option cannot be used when -q/--quiet
is used. (default: 3)
-q, --quiet Disable logging. This option cannot be used when
-v/--verbose is used. (default: False)
--version show program's version number and exit
-f, --force Replace existing files. (default: False)
-n, --dry-run Run the script without creating files (default: False)
-o DESTDIR, --output-dir DESTDIR
directory to place all output (default: None)
sphinx-apidoc options:
-s SUFFIX, --suffix SUFFIX
file suffix (default: rst)
--implicit-namespaces
interpret module paths according to PEP-0420 implicit
namespaces specification (default: False)
... Commands and flags to supply to sphinx-apidoc. Note
that some arguments like `--dry-run` are ignored.
sphinx-nested-apidoc is licensed under MIT license. Visit
<https://github.com/arunanshub/sphinx-nested-apidoc> for more info.
Some additional details
What it does
- As you saw earlier, it generates a nested directory from a flattened one.
- Under the hood, it uses
sphinx-apidoc
. More on this below.
As stated above, sphinx-nested-apidoc
uses sphinx-apidoc
internally. This means,
you can configure sphinx-apidoc
from sphinx-nested-apidoc
. For example:
# You can pass arguments like this:
sphinx-nested-apidoc -o docs/ mymodule/ -- -M -F --ext-githubpages
# or you can simply omit the '--'.
Everything after the required positional argument of sphinx-nested-apidoc
is
passed to sphinx-apidoc
.
What it does not do
- It does not modify the contents of the file. It just renames (or moves) them.
- It is not a standalone tool. It requires
sphinx-apidoc
for its work.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for sphinx_nested_apidoc-1.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4dea7b1036973df93096ff9e07b02be00295fa5b32d4b9483be2574ff60fea03 |
|
MD5 | 37828d828f3a231f28811d50350d8fd8 |
|
BLAKE2b-256 | ec3c1b0ba7aade4bd754b89d16a225933153b63e00ba69686c53d0bcb7ad109d |
Hashes for sphinx_nested_apidoc-1.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb31920537985716164a42b479a492bbae72c77aa3a01c23753aa154c43307d8 |
|
MD5 | 280d193d203334691e511e6a2f233b67 |
|
BLAKE2b-256 | 9049d0b159e570188b328120b1de3fb14d8d09a6ade4560a95b8dcc750af5a7a |