Skip to main content

Allows for pretty printing and automatic resizing of tables.

Project description

PyPi Version python version downloads codecov

Python Table Print

A lightweight library to create ASCII tables that automaticallly update their spacing based on the input.

Usage

Python Table Print is object-oriented. This means that a PrintTable object gets instantiated and added to/edited. When the table is ready to be printed/created, this can be done by calling the get_table method. An example can be found in example.py, but is copied here for convenience:

Basic Usage

from table import PrintTable

my_table = PrintTable()

my_table.add_row("Col 1", "Col 2", "Col 3")
my_table.add_row("Entry 1", "Entry number 2", "Entry 3 baby")
my_table.add_row("Another entry", "yay", "an entry in the table")
my_table.add_row("Fun times", "This is kinda cool", "wooow")

print(my_table.get_table())

Output:

┌───────────────┬────────────────────┬───────────────────────┐
│ Col 1         │ Col 2              │ Col 3                 │
├───────────────┼────────────────────┼───────────────────────┤
│ Entry 1       │ Entry number 2     │ Entry 3 baby          │
│ Another entry │ yay                │ an entry in the table │
│ Fun times     │ This is kinda cool │ wooow                 │
└───────────────┴────────────────────┴───────────────────────┘

As shown in the above example, getting the current table is as simple as calling the get_table() method. This returns the table as a simple string. This can then be passed to whatever function you like, in this case the print function.

Header

By default, the first row of the table is treated as the header of the table, and is printed with an extra border around it, not done for any other row. This behaviour can be turned off/on by setting the property has_header to True/False:

from table import PrintTable

my_table = PrintTable()

my_table.add_row("Col 1", "Col 2", "Col 3")
my_table.add_row("Entry 1", "Entry number 2", "Entry 3 baby")
my_table.add_row("Another entry", "yay", "an entry in the table")
my_table.add_row("Fun times", "This is kinda cool", "wooow")

my_table.has_header_row = False

print(my_table.get_table())

Output:

┌───────────────┬────────────────────┬───────────────────────┐
│ Col 1         │ Col 2              │ Col 3                 │
│ Entry 1       │ Entry number 2     │ Entry 3 baby          │
│ Another entry │ yay                │ an entry in the table │
│ Fun times     │ This is kinda cool │ wooow                 │
└───────────────┴────────────────────┴───────────────────────┘

Justification

Be default, all of the cells are justified to the left. However, justification can be changed for the entire table, for a row or column, or for individual cells. Whenever a justification is set it overrides any previous justification set on that/those cell/cells. Note that Justification also needs to be imported.

Justification for the Table:

from table import PrintTable, Justification

my_table = PrintTable()

my_table.add_row("Col 1", "Col 2", "Col 3")
my_table.add_row("Entry 1", "Entry number 2", "Entry 3 baby")
my_table.add_row("Another entry", "yay", "an entry in the table")
my_table.add_row("Fun times", "This is kinda cool", "wooow")

my_table.set_table_justification(Justification.CENTRE)

print(my_table.get_table())

Output:

┌───────────────┬────────────────────┬───────────────────────┐
│     Col 1     │       Col 2        │         Col 3         │
├───────────────┼────────────────────┼───────────────────────┤
│    Entry 1    │   Entry number 2   │     Entry 3 baby      │
│ Another entry │        yay         │ an entry in the table │
│   Fun times   │ This is kinda cool │         wooow         │
└───────────────┴────────────────────┴───────────────────────┘

Justification for a Row:

Continuing from the previous example above:

...

my_table.set_row_justification(0, Justification.LEFT)

print(my_table.get_table())

Output:

┌───────────────┬────────────────────┬───────────────────────┐
│ Col 1         │ Col 2              │ Col 3                 │
├───────────────┼────────────────────┼───────────────────────┤
│    Entry 1    │   Entry number 2   │     Entry 3 baby      │
│ Another entry │        yay         │ an entry in the table │
│   Fun times   │ This is kinda cool │         wooow         │
└───────────────┴────────────────────┴───────────────────────┘

Justification for a Column:

Continuing from the previous example above:

...

my_table.set_column_justification(0, Justification.RIGHT)

print(my_table.get_table())

Output:

┌───────────────┬────────────────────┬───────────────────────┐
│         Col 1 │ Col 2              │ Col 3                 │
├───────────────┼────────────────────┼───────────────────────┤
│       Entry 1 │   Entry number 2   │     Entry 3 baby      │
│ Another entry │        yay         │ an entry in the table │
│     Fun times │ This is kinda cool │         wooow         │
└───────────────┴────────────────────┴───────────────────────┘

Justification for a Cell:

Continuing from the previous example above:

...

my_table.set_cell_justification(1, 1, Justification.LEFT)

print(my_table.get_table())

Output:

┌───────────────┬────────────────────┬───────────────────────┐
│         Col 1 │ Col 2              │ Col 3                 │
├───────────────┼────────────────────┼───────────────────────┤
│       Entry 1 │ Entry number 2     │     Entry 3 baby      │
│ Another entry │        yay         │ an entry in the table │
│     Fun times │ This is kinda cool │         wooow         │
└───────────────┴────────────────────┴───────────────────────┘

Notice how in the above examples the justifications of the edited cells were overwritten with the latest justification.

Title

You can add a title to your table. Defaults to centre justification

...

my_table.set_title("Title")

Output:

┌────────────────────────────────────────────────────────────┐
│                           Title                            │
├───────────────┬────────────────────┬───────────────────────┤
│         Col 1 │ Col 2              │ Col 3                 │
├───────────────┼────────────────────┼───────────────────────┤
│       Entry 1 │ Entry number 2     │     Entry 3 baby      │
│ Another entry │        yay         │ an entry in the table │
│     Fun times │ This is kinda cool │         wooow         │
└───────────────┴────────────────────┴───────────────────────┘

Clearing a title:

...

my_table.clear_title()

Output:

┌───────────────┬────────────────────┬───────────────────────┐
│         Col 1 │ Col 2              │ Col 3                 │
├───────────────┼────────────────────┼───────────────────────┤
│       Entry 1 │ Entry number 2     │     Entry 3 baby      │
│ Another entry │        yay         │ an entry in the table │
│     Fun times │ This is kinda cool │         wooow         │
└───────────────┴────────────────────┴───────────────────────┘

Justification for Title

You can change the justification of your title:

...

my_table.set_title("Title")
my_table.set_title_justification(Justification.LEFT)

Output:

┌────────────────────────────────────────────────────────────┐
│ Title                                                      │
├───────────────┬────────────────────┬───────────────────────┤
│         Col 1 │ Col 2              │ Col 3                 │
├───────────────┼────────────────────┼───────────────────────┤
│       Entry 1 │ Entry number 2     │     Entry 3 baby      │
│ Another entry │        yay         │ an entry in the table │
│     Fun times │ This is kinda cool │         wooow         │
└───────────────┴────────────────────┴───────────────────────┘

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_table_print-0.4.3.tar.gz (9.9 kB view hashes)

Uploaded Source

Built Distribution

python_table_print-0.4.3-py3-none-any.whl (9.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page