Documentation generator for PostgreSQL DB
Project description
PostgreSQL Docs Generator for Foliant
This preprocessor is DEPRECATED. Please, use DBDoc instead.
This preprocessor generates simple documentation of a PostgreSQL database based on its structure. It uses Jinja2 templating engine for customizing the layout and PlantUML for drawing the database scheme.
Installation
$ pip install foliantcontrib.pgsqldoc
Config
To enable the preprocessor, add pgsqldoc
to preprocessors
section in the project config:
preprocessors:
- pgsqldoc
The preprocessor has a number of options:
preprocessors:
- pgsqldoc:
host: localhost
port: 5432
dbname: postgres
user: postgres
password: ''
draw: false
filters:
...
doc_template: pgsqldoc.j2
scheme_template: scheme.j2
host
: PostgreSQL database host address. Default: localhost
port
: PostgreSQL database port. Default: 5432
dbname
: PostgreSQL database name. Default: postgres
user
: PostgreSQL user name. Default: postgres
passwrod
: PostgreSQL user password.
draw
: If this parameter is true
— preprocessor would generate scheme of the database and add it to the end of the document. Default: false
filters
: SQL-like operators for filtering the results. More info in the Filters section.
doc_template
: Path to jinja-template for documentation. Path is relative to the project directory. Default: pgsqldoc.j2
scheme_template
: Path to jinja-template for scheme. Path is relative to the project directory. Default: scheme.j2
Usage
Add a <pgsqldoc></pgsqldoc>
tag at the position in the document where the generated documentation of a PostgreSQL database should be inserted:
# Introduction
This document contains the most awesome automatically generated documentation of our marvellous database.
<pgsqldoc></pgsqldoc>
Each time the preprocessor encounters the tag <pgsqldoc></pgsqldoc>
it inserts the whole generated documentation text instead of it. The connection parameters are taken from the config-file.
You can also specify some parameters (or all of them) in the tag options:
# Introduction
Introduction text for database documentation.
<pgsqldoc draw="true"
host="11.51.126.8"
port="5432"
dbname="mydb"
user="scott"
password="tiger">
</pgsqldoc>
Tag parameters have the highest priority.
This way you can have documentation for several different databases in one foliant project (even in one md-file if you like it so).
Filters
You can add filters to exclude some tables from the documentation. Pgsqldocs supports several SQL-like filtering operators and a determined list of filtering fields.
You can switch on filters either in foliant.yml file like this:
preprocessors:
- pgsqldoc:
filters:
eq:
schema: public
regex:
table_name: 'main_.+'
or in tag options using the same yaml-syntax:
<pgsqldoc filters="
eq:
schema: public
regex:
table_name: 'main_.+'">
</pgsqldoc>
List of currently supported operators:
operator | SQL equivalent | description | value |
---|---|---|---|
eq |
= |
equals | literal |
not_eq |
!= |
does not equal | literal |
in |
IN |
contains | list |
not_in |
NOT IN |
does not contain | list |
regex |
~ |
matches regular expression | literal |
not_regex |
!~ |
does not match regular expression | literal |
List of currently supported filtering fields:
field | description |
---|---|
schema | filter by PostgreSQL database schema |
table_name | filter by database table names |
The syntax for using filters in configuration files is following:
filters:
<operator>:
<field>: value
If value
should be list like for in
operator, use YAML-lists instead:
filters:
in:
schema:
- public
- corp
About Templates
The structure of generated documentation is defined by jinja-templates. You can choose what elements will appear in the documentation, change their positions, add constant text, change layouts and more. Check the Jinja documentation for info on all cool things you can do with templates.
If you don't specify path to templates in the config-file and tag-options pgsqldoc will use default paths:
<Project_path>/pgsqldoc.j2
for documentation template;<Project_path>/scheme.j2
for database scheme source template.
If pgsqldoc can't find these templates in the project dir it will generate default templates and put them there.
So if you accidentally mess things up while experimenting with templates you can always delete your templates and run preprocessor — the default ones will appear in the project dir. (But only if the templates are not specified in config-file or their names are the same as defaults).
One more useful thing about default templates is that you can find a detailed description of the source data they get from pgsqldoc in the beginning of the template.
Project details
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 foliantcontrib.pgsqldoc-1.1.7.tar.gz
.
File metadata
- Download URL: foliantcontrib.pgsqldoc-1.1.7.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f0674834e170899fb7750207edda70b8b7847a54bc274533a4b5c499472d45c |
|
MD5 | b9c7a90339bb111cdb00698d6650ed87 |
|
BLAKE2b-256 | e0c01efb8db6094c6e5c5bbc4e57ac1f23963b008a3ebfcaad0fed4d85185e13 |
File details
Details for the file foliantcontrib.pgsqldoc-1.1.7-py3-none-any.whl
.
File metadata
- Download URL: foliantcontrib.pgsqldoc-1.1.7-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67719012a8266595cebe1fd8f4f4098de0f164435e511c942268d8a74e81e076 |
|
MD5 | cccb4136c36f7cb11528d09a9b4c51f2 |
|
BLAKE2b-256 | 9997a4f819240cc3fc8e11efcb424fe1a15b184847db812fc3470acd16e0063a |