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.
tabulate does not appear to support text wrapping for latex format tables. can this be supported? Would probably need to use "p" format columns in latex.
* Add .pylintrc * Add github action to run pylint * Fix some of pylint issues
Version 0.9.0 is not compatible with Python 3.11. When importing the module the following stack trace is shown. ```python $ python3 Python 3.11.4 (main, Jun 28 2023, 19:51:46) [GCC] on...
The maxcolwidths parameter does not work with an integer field. And with a bool field, the program breaks down with the error: AttributeError: 'bool' object has no attribute 'expandtabs' `print(tabulate([["string",...
Allow missing (None) and empty ("") cells to be treated the same, for the purposes of deducing the column type. This allows us to have empty cells (without the `missingval`),...
This is a great library, thank you for it. Consider supporting Polars, similar to Pandas.
Hi, Im using tabulate to display config data which is stored in a list. When the list has a lot of entries tabulate doesnt display them all and stops somewhere...
The subject says it all.. 😉 Tested: ``` lint: OK (6.63=setup[4.07]+cmd[2.56] seconds) py37: OK (5.15=setup[3.97]+cmd[1.19] seconds) py38: OK (4.83=setup[3.63]+cmd[1.20] seconds) py39: OK (4.42=setup[3.28]+cmd[1.14] seconds) py310: OK (4.77=setup[3.57]+cmd[1.20] seconds) py311: OK...
Because of how tabulate deals with OSC8 (hyperlink) sequences, it can't deal with any escape sequences in what it considers the "link text". However, that concept doesn't really exist and...
``` shell Python 3.4.3 (default, Nov 12 2018, 22:25:49) [GCC 4.8.4] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from tabulate import tabulate Traceback (most recent...