prettytable
prettytable copied to clipboard
Display tabular data in a visually appealing ASCII table format
I wanted to try to add the ability to create sections in a table as requested in issue #148. In order to add an `end_section` attribute to a row, I...
Would supporting joining table cells be something you might consider? I want to make tables like the following: ``` +-------------+-----------+--------------+---------------+------------------------+------------+ | byte | 0 | 1 | 2 | 3...
I followed the README steps for doing column alignment: ```py from prettytable import PrettyTable def main() -> None: x = PrettyTable() x.align = "r" x.field_names = ["City name", "Area", "Population",...
The only option available currently is to make the first row of the table the header. I have a use case where I prefer the first column of the table...
### What did you do? `table = PrettyTable()` ```python table = table.get_html_string( attributes={ 'border': 1, 'style': 'border-width: 1px; border-collapse: collapse; text-align: center; padding: 2px;' } ) ``` ### What did...
Sometimes column headers are (much) longer than the column data. An option to ignore the width of the header itself would be nice to have.
### Is your feature request related to a problem? Please describe. I often want to make groups of rows in a table. To indicate the grouping, I want to put...
Fixes #40. Add Escaping Options to HTML Tables This will allow tables to contain active links and other html code allowing prettytables to more easily be used for dynamic site...
### Is your feature request related to a problem? Please describe. When long table data is displayed, sometimes the header title of the data cannot be seen on the whole...
### Is your feature request related to a problem? Please describe. I want to create a table and make it visible in DokuWiki. DokuWiki uses the caret sign `^` to...