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

My Codes: ```python from terminaltables import SingleTable ... def show(self, nametuple): datas = [] datas.append(("id",) + nametuple._fields[:-1]) for i, data in enumerate(self.data): datas.append((i,) + data[:-1]) print SingleTable(datas).table ``` ```sh ....

Hello! I'm using this project in [undertime](https://gitlab.com/anarcat/undertime) and we're suffering from a major alignment issue described in #55. that has been opened for almost two years now and a fix...

it seems that the "center" alignment can get confused if there is some escape sequences in a column. for example, [this program](https://gitlab.com/anarcat/undertime/blob/f1903bd/undertime.py) will generate this misaligned table: ``` [997]anarcat@angela:undertime$ ./undertime.py...

This was adapted from an example in the python docs and solves test failures seen on the CI. We need to write to the underlying buffer object of the stream,...

It's unclear to me from reading the documentation how I can use this to print a table row by row over time? I am looking to do something like: ```python...

The terms of the MIT license requires all copies of the source include the license text. Fixes #66

Would it be possible to have tables created directly from a JSON-type dictionary?

For packaging, it is useful to run the tests from the source tarball to verify the packaging is correct. c.f. https://github.com/Robpol86/colorclass/issues/25