python-tabulate icon indicating copy to clipboard operation
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.

Results 131 python-tabulate issues
Sort by recently updated
recently updated
newest added

`tabulate -s "," -f fancy_grid -maxcolwidths=(None, 8)` doesn't work. Is it possible to set the maxcolwidths argument in CLI?

The option to whether or not to preserve leading/trailing whitespace in data is hardcoded to False by default. I would like the option to preserve the whitespace when making a...

# Bug fix for issue #318 | `intfmt`: error for strings which contain integer values ## Description. Resolved the problem with the `intfmt` argument. Added tests for these changes. Test...

https://github.com/astanin/python-tabulate/blob/95ae5eb61ef969749e904c90ab429003238d6212/tabulate/__init__.py#L1532C27-L1532C61 - exception traceback: ``` File "C:\Python38\lib\site-packages\tabulate\__init__.py", line 2061, in tabulate list_of_lists = _wrap_text_to_colwidths( File "C:\Python38\lib\site-packages\tabulate\__init__.py", line 1516, in _wrap_text_to_colwidths str(cell) if _isnumber(cell) else _type(cell, numparse)(cell) TypeError: NoneType takes no...

The `SEPARATING_LINE` macro works only with the default style. This is the sample data: ``` table = [ ["A", 1, 2], ["B", 3, 4], SEPARATING_LINE, ["C", 5, 6], ["D", 7,...

# Bug: `intfmt` error for strings which contain integer values ## Description The argument `intfmt` throws an error when some value in the data is a string, but it looks...

# Discussion: data types of the columns ## Discussion My question is whether there should be a mixed-type column instead of automatically deciding what data type the column is. In...

# Feature: for numbers, apply the “digit grouping” for integers and floats. ## Context ### Decimal separator A decimal separator is a symbol used to separate the integer part from...

Here's a column from a table in `fancy_outline` format. Taken from the current tip of master, such that multiline cells for another column to the right of the offending one...

Related to - Issue 133 https://github.com/astanin/python-tabulate/issues/133 - Print missing values as a minus sign or another character https://stackoverflow.com/a/71165631/2641825 # Current behaviour The `missingval` argument doesn't recognise `np.nan` values, it only...