blob: f0b48581586141e4e71fa0b2cca5d517f58cf816 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
"""Generate simple tables in terminals from a nested list of strings.
Use SingleTable or DoubleTable instead of AsciiTable for box-drawing characters.
https://github.com/Robpol86/terminaltables3
https://pypi.python.org/pypi/terminaltables3
"""
from terminaltables3.ascii_table import AsciiTable # noqa
from terminaltables3.github_table import GithubFlavoredMarkdownTable # noqa
from terminaltables3.other_tables import DoubleTable # noqa
from terminaltables3.other_tables import PorcelainTable # noqa
from terminaltables3.other_tables import SingleTable # noqa
__author__ = "@Robpol86"
__license__ = "MIT"
__version__ = "3.1.0"
|