1
0
Fork 0
cli-helpers/cli_helpers/tabular_output/__init__.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
439 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""CLI Helper's tabular output module makes it easy to format your data using
various formatting libraries.
When formatting data, you'll primarily use the
:func:`~cli_helpers.tabular_output.format_output` function and
:class:`~cli_helpers.tabular_output.TabularOutputFormatter` class.
"""
from .output_formatter import format_output, TabularOutputFormatter
__all__ = ["format_output", "TabularOutputFormatter"]