Writer
- class sqlcompyre.report.writers._base.Writer(formatter: Formatter)[source]
Abstract base class for writers of reports.
Methods
write(reports[, hide_matching_columns])Write the provided reports to this writer's sink.
- abstract write(reports: dict[str, Report], hide_matching_columns: bool = False) None[source]
Write the provided reports to this writer’s sink.
- Args:
reports: A set of reports, mapped from an identifier to the report. hide_matching_columns: Whether to hide columns from the report which show a perfect
(i.e. 100%) match rate.