python-tabulate
python-tabulate copied to clipboard
Pretty-print tabular data in Python, a library and a command-line utility. Repository migrated from bitbucket.org/astanin/python-tabulate.
To output multiple tables in different formats i often need a MarkupHeader - i created the following helper class today to streamline the process: ```python """ Created on 19.11.2023 @author:...
This PR fixes issue [#214](https://github.com/astanin/python-tabulate/issues/214) Issue: - When you used a tuple for maxcolwidths, it caused an `TypeError` error. PR: - The original PR [#215](https://github.com/astanin/python-tabulate/pull/215) created by [Racerroar888](https://github.com/Racerroar888) was closed...
Resolves #246
Force the text-align style to make sure it is aligned properly.
I need to print table with leading spaces in some rows data (like execution plan from postgres), the only way I found is to use `stralign=None` , but it breaks...
Fuzzer issue 50322 | === Uncaught Python exception: === -- | -- | ValueError: could not convert string to float: 'True' | Traceback (most recent call last): | File "fuzz_tabulate.py",...
Fix #135 - [x] Add the test to check for exceptions - [x] Fix for booleans to float conversion - [x] Fix for booleans and strings formatted as integers -...