module documentation

That module can create reports from data objects like pandas.DataFrame, images or figures (e.g. based on seaborn or matplotlib).

The reports are created with an instance of class Report independent from the desired output format. After compose the report with its components it is possible to generate an output document in the formats MS Word (docx), MS Excel (xlsx) or Markdown (md). It must be easy to implement additional formats. There are plans to implement Open Document (odt and ods) as well, what depends on the activity and future in the odfpy package or derivats.

Class DocxDocument Export a Report as MS Word docx file.
Class MarkdownDocument Export a Report into a markdown document.
Class Report Content container for a report like document independent from its output format.
Class XlsxDocument Export a Report into an xlsx (MS Excel) file.
Constant DEFAULT_DPI DPI used for creating image data from plotted figures.
Class _ControlType An Enum to control page behavior and other parts of a document.
Class _GenericDocumentOutput Base class for the different output file types.
Class _ReferenceKind Enum for references list types.
Variable _log Undocumented
DEFAULT_DPI: int = (source)

DPI used for creating image data from plotted figures.

Value
300

Undocumented