terminaltables icon indicating copy to clipboard operation
terminaltables copied to clipboard

Project no longer maintained.

Results 39 terminaltables issues
Sort by recently updated
recently updated
newest added

Click's documentation seems to have a Sphinx directive that invokes functions and displays the output in HTML.

Provide API in terminaltables for textwrap instead of having developers do it themselves.

enhancement

Maybe something like `cat file.csv |python -m terminaltables` and also Excel files.

enhancement

The default is to hide the title if it doesn't fit. I didn't remember this until I was done writing truncating code. Saving it here for future reference. ``` python...

I am using Chinese, cp437 can't handle it. So the default code page is cp936. Thus the Single/DoubleTable will create too long table line. Any hints?

bug

Currently we only have: `self.justify_columns = dict() # {0: 'right', 1: 'left', 2: 'center'}` Add: `self.justify_rows = dict() # {0: 'top', 1: 'middle', 2: 'bottom'}` `self.justify_cells = dict() # {(0,...

Implement `table.title_cb` which accepts a function/lambda that handles titles that won't fit in the top border. Function signature expected: ``` :param str title: The title to overlay on the top...

Currently everything is vertically aligned to the top. Add option to support middle and bottom alignments.

Hi, Doesn't seem to support tables in tables. I tried: table = SingleTable(table_data,"Work logs") outer_table = SingleTable([[""],[table.table]],"outer") print outer_table.table But got the following table, not sure if this will show...