├── .github └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── .readthedocs.yaml ├── License.md ├── README.md ├── docs ├── Makefile ├── conf.py └── index.rst ├── example.png ├── requirements-dev.txt ├── requirements.txt ├── setup.py ├── tableprint ├── __init__.py ├── metadata.py ├── printer.py ├── style.py └── utils.py └── tests ├── test_functions.py ├── test_io.py └── test_utils.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/docs/index.rst -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/example.png -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pandas 3 | pytest 4 | coverage 5 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | wcwidth 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/setup.py -------------------------------------------------------------------------------- /tableprint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/tableprint/__init__.py -------------------------------------------------------------------------------- /tableprint/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/tableprint/metadata.py -------------------------------------------------------------------------------- /tableprint/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/tableprint/printer.py -------------------------------------------------------------------------------- /tableprint/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/tableprint/style.py -------------------------------------------------------------------------------- /tableprint/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/tableprint/utils.py -------------------------------------------------------------------------------- /tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/tests/test_functions.py -------------------------------------------------------------------------------- /tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/tests/test_io.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirum/tableprint/HEAD/tests/test_utils.py --------------------------------------------------------------------------------