Adding upstream version 2.1.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
d1aeef90c9
commit
d8a70e48ab
56 changed files with 3865 additions and 0 deletions
13
cli_helpers/tabular_output/__init__.py
Normal file
13
cli_helpers/tabular_output/__init__.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
# -*- 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']
|
Loading…
Add table
Add a link
Reference in a new issue