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.
0.9.1 has many additional features than 0.9.0, but it is not released to PyPi yet.
When using grid table formats to style a table, you get distorted results. For example, this script: import tabulate rows = [ ['foo', 'bar'], ['foo', 'bar'], tabulate.SEPARATING_LINE, ['foo', 'bar'], ['foo',...
`tabulate.SEPARATING_LINE` does not work when the table consists of dictionaries and keys are used as headers: ``` >>> table = [{"name": "Ben"}, {"name": "Adam"}] >>> print(tabulate.tabulate(table, headers="keys")) name ------ Ben...
The expected arguments in the command line utility do not match the help description. Furthermore, the long "--output" parameter was missing the following filename, and "--align" was later expected to...
The current `"grid"` table format in Tabulate's documentation says: > It corresponds to grid_tables in Pandoc Markdown extensions It is true that the tables are _similar_ to each other, but...
It would be nice to have a footer or total row, that is visually seperated from the rest of the data (like the header). The difference to the header is...
This is an awesome library! I have a use case that's not quite covered right now. I often have a giant list of dictionaries, where each dictionary has about ~400...
I'll occasionally see production reporting processes fail because I'll have a floatfmt that specifies a None for a certain column but Tabulate wants to convert a value for that column,...