A command line tool for generating Markdown documentation and .env files from pydantic BaseSettings.
Project description
⚙ 📝 Settings DocGen 📝 ⚙
A command line tool for generating Markdown documentation and .env files from pydantic.BaseSettings.
The same way you are able to generate OpenAPI documentation from pydantic.BaseModel
, settings-doc
allows you to generate documentation from pydantic.BaseSettings
.
It is powered by the Jinja2 templating engine and Typer framework. If you don't like the built-in templates, you can easily modify them or write completely custom ones. All attributes of the BaseSettings
models are exposed to the templates.
Table of content
Installation
pip install settings-doc
Usage
See settings-doc --help
for all options.
Minimal example
Let's assume the following BaseSettings
in src/settings.py
of a project:
from pydantic import BaseSettings
class AppSettings(BaseSettings):
logging_level: str
You can generate a Markdown documentation into stdout with:
settings-doc generate --class src.settings.AppSettings --output-format markdown
Which will output:
# `LOGGING_LEVEL`
**Required**
Similarly, you can generate a .env
file for local development with:
settings-doc generate --class src.settings.AppSettings --output-format dotenv
Which will output:
LOGGING_LEVEL=
Class auto-discovery
If you have a module with a single settings class or want to load multiple classes at once as a source, you can also use the --module
option. The following example works exactly like the one above and will use the AppSettings
class automatically.
settings-doc generate --module src.settings --output-format dotenv
If multiple classes contain a field with the same name, all instances will appear in the output.
Adding more information
You can add any extra field parameters to the settings. By default, settings-doc
will utilise the default value, whether the parameter is required or optional, description, example value and list of possible values:
from pydantic import BaseSettings, Field
class AppSettings(BaseSettings):
logging_level: str = Field(
"WARNING",
description="Log level.",
example="`WARNING`",
possible_values=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
)
Which will generate the following markdown:
# `LOGGING_LEVEL`
*Optional*, default value: `WARNING`
Log level.
## Examples
`WARNING`
## Possible values
`DEBUG`, `INFO`, `WARNING`, `ERROR`, `CRITICAL`
or .env
file:
# Log level.
# Possible values:
# `DEBUG`, `INFO`, `WARNING`, `ERROR`, `CRITICAL`
# LOGGING_LEVEL=WARNING
You can find even more complex usage of settings-doc
in one of my other projects.
Updating existing documentation
You may want to generate the documentation into and existing document. To fit with the heading structure, you can adjust the heading levels with --heading-offset
. Additionally, you can specify the location where to generate the documentation with two marks set by --between <START MARK> <END MARK>
.
Let's assume your README.md
looks like this:
# My app
This app is distributes as a docker image and configurable via environment variables. See the list below:
<!-- generated env. vars. start -->
<!-- generated env. vars. end -->
When you run:
settings-doc generate \
--class src.settings.AppSettings \
--output-format markdown \
--update README.md \
--between "<!-- generated env. vars. start -->" "<!-- generated env. vars. end -->" \
--heading-offset 1
the updated README.md
will get only the specified location overwritten:
# My app
This app is distributes as a docker image and configurable via environment variables. See the list below:
# Environment variables
<!-- generated env. vars. start -->
## `LOGGING_LEVEL`
*Optional*, default value: `WARNING`
Log level.
### Examples
`WARNING`
### Possible values
`DEBUG`, `INFO`, `WARNING`, `ERROR`, `CRITICAL`
<!-- generated env. vars. end -->
Custom templates
settings-doc
comes with a few built-in templates. You can override them or write completely new ones.
To just modify the existing ones:
- Copy the built-in templates into a new directory:
mkdir custom_templates settings-doc templates --copy-to custom_templates
- Modify the template copies in
custom_templates
to suit your needs. You can keep only the modified ones assettings-doc
always falls back to the built-in ones. - Use them when generating the documentation:
settings-doc generate \ --class src.settings.AppSettings \ --output-format dotenv \ --templates custom_templates
To create new ones, create a folder and then a Jinja2 template with a file names <OUTPUT_FORMAT>.jinja
. Then simply reference both in the command line options:
mkdir custom_templates
echo "{{ field.title }}" > custom_templates/only_titles.jinja
settings-doc generate \
--class src.settings.AppSettings \
--output-format only_titles \
--templates custom_templates
Custom settings attributes in templates
By default, there are several variables available in all templates:
heading_offset
, which is the value of the--heading-offset
option, defaults to0
.fields
, which is the value ofBaseSettings.__fields__.values()
. In other words, a list of individual settings fields. Each field is then an instance ofModelField
.
Extra parameters unknown to pydantic are stored in field.field_info.extra
. Examples of such parameters are example
and possible_values
.
Even the bare ModelField
without any extra parameters has a large number of attributes. To see them all, run this settings-doc
with --format debug
.
Features overview
- Output into several formats with
--output-format
: markdown, dotenv - Writes into stdout by default, which allows piping to other tools for further processing.
- Able to update specified file with
--update
, optionally between two given string marks with--between
. Useful for keeping documentation up to date. - Additional templates and default template overrides via
--templates
.
Markdown
- Allows setting a
--heading-offset
to fit into existing documentation. - Intelligently formats example values as:
- Single line if all values fit withing 75 characters.
- List of values if all values won't fit on a single line.
- List of
<VALUE>: <DESCRIPTION>
if example values are tuples of 1-2 items.
.env
- Leaves environment variables commented if they have a default value as the app doesn't require them.
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
File details
Details for the file settings-doc-0.6.1.tar.gz
.
File metadata
- Download URL: settings-doc-0.6.1.tar.gz
- Upload date:
- Size: 14.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.6.15 Linux/4.15.0-1110-aws
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af80b27044d7786f3d73816e6a4041d000dc14e9b69bd3323aef9107fb552569 |
|
MD5 | 88519cf70b014630916aa1007ba9b459 |
|
BLAKE2b-256 | 991c7537aad97089bd165cf42424283c674bb09329e1af103f2f394f49d66df4 |
File details
Details for the file settings_doc-0.6.1-py3-none-any.whl
.
File metadata
- Download URL: settings_doc-0.6.1-py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.6.15 Linux/4.15.0-1110-aws
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 178f4836a46392fb95a635a3e71b56e192062ce74e5201231fd781c063592032 |
|
MD5 | dbe8225f7076a6d7efe6a4281f6f57f0 |
|
BLAKE2b-256 | 0191b75e53a57ff021bf105106e4e2163eee3035d3aadeb9f5192e35e5d527be |