Skip to main content

Prints tables in terminal

Project description

mesita

mesita is a library for printing tables in the terminal.

You can use it to print a table and customize the cells with different font styles and colors.

mesita is also good for diffing two tables and comparing differences. You can print tables side-by-side or even mix two tables into one.

mesita is leveraged by unit testing libraries like chispa and beavis.

Format strings in the Terminal

Here's how to print a string that's bold and blue in the Terminal:

mesita.format_string("Adelaide", ["bold", "blue"])

Print table comparisons

Suppose you have the following tables that are similar. Here is the first table:

+-----------+------+------------+-----------------+
| City name | Area | Population | Annual Rainfall |
+-----------+------+------------+-----------------+
|  Adelaide | 1295 |  1158259   |      600.5      |
|  Brisbane | 5905 |  1857594   |      1146.4     |
+-----------+------+------------+-----------------+

Here is the other table:

+-----------+------+------------+-----------------+
| City name | Area | Population | Annual Rainfall |
+-----------+------+------------+-----------------+
|  Adelaide | 1300 |  1158259   |      600.5      |
|  Brisbane | 5905 |  1857594   |       1148      |
+-----------+------+------------+-----------------+

Tables as two columns

Here's how to print the tables as two columns:

field_names1 = ["City name", "Area", "Population", "Annual Rainfall"]
rows1 = [
    ["Adelaide", 1295, 1158259, 600.5],
    ["Brisbane", 5905, 1857594, 1146.4]
]
rows2 = [
    ["Adelaide", 1300, 1158259, 600.5],
    ["Brisbane", 5905, 1857594, 1148]
]
m = Mesita(field_names1, rows1, rows2, ["nc"], ["red", "bold"], lambda x, y: x == y)
print("\n" + m.as_columns())

two_columns

Tables side-by-side

Here's how to print the tables side-by-side:

m = Mesita(field_names1, rows1, rows2, ["nc"], ["red", "bold"], lambda x, y: x == y)
print("\n" + m.side_by_side())

side_by_side

Tables combined into one

And here's how to print the tables combined into a single table:

m = Mesita(field_names, rows1, rows2, ["nc"], ["red", "bold"], lambda x, y: x == y)
print("\n" + m.smush())

smush

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

mesita-0.0.1.tar.gz (16.1 kB view hashes)

Uploaded Source

Built Distribution

mesita-0.0.1-py3-none-any.whl (16.0 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