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.
I'm in a deep dive into table syntax in markup languages and I reviewed all those proposed by `python-tabulate`. I'm really happy with the extensive list implemented into this library....
I was having issues where a `Decimal` object was being outputted incorrectly in the table - the value was `99999998999.999980` and `tabulate` was called with `floatfmt=",.6f"`, and the output in...
When the `maxcolwidths` argument is used, explicit line breaks are stripped out and replaced with spaces: ``` >>> table = [("a\na", 1), ("b", 2)] >>> print(tabulate(table, tablefmt="grid")) +---+---+ | a...
- g.w: table width with frame elements, - g.h: table height with frame elements, - g.c_w: width of each column without frame elements, - g.r_h: height of each row without...
It would be very useful to have a parameter which allows for setting a global or per-column strategy of how to handle newlines within the values to be shown in...