Skip to main content

Generate simple tables in terminals from a nested list of strings.

Project description

Easily draw tables in terminal/console applications from a list of lists of strings. Supports multi-line rows.

  • Python 2.6, 2.7, PyPy, PyPy3, 3.3, and 3.4 supported on Linux and OS X.

  • Python 2.7, 3.3, and 3.4 supported on Windows (both 32 and 64 bit versions of Python).

Tested on Windows XP and Windows 10 technical preview.

Build Status Windows Build Status Coverage Status Latest Version Downloads

Quickstart

Install:

pip install terminaltables

Example Implementations

Example Scripts Screenshot

Source code for examples: example1.py, example2.py, and example3.py

Usage

The below usage information is for AsciiTable which uses simple ASCII characters for the table (e.g. - + |). Use SingleTable for box drawing characters instead. You may also use DoubleTable for double-lined box characters. All three tables have the same methods and properties and work on all platforms.

Simple Usage

from terminaltables import AsciiTable
table_data = [
    ['Heading1', 'Heading2'],
    ['row1 column1', 'row1 column2'],
    ['row2 column1', 'row2 column2'],
    ['row3 column1', 'row3 column2']
]
table = AsciiTable(table_data)
print table.table
+--------------+--------------+
| Heading1     | Heading2     |
+--------------+--------------+
| row1 column1 | row1 column2 |
| row2 column1 | row2 column2 |
| row3 column1 | row3 column2 |
+--------------+--------------+

table_data is a list of lists of strings. The outer list represents the whole table, while the inner lists represents rows. Each row-list holds strings which are the cells of that row.

The first row can be though of the heading, but it doesn’t have to be. You can turn off the heading separator (the only thing that makes the first row a “heading” row) by setting table.inner_heading_row_border = False.

table.inner_heading_row_border = False
print table.table
+--------------+--------------+
| Heading1     | Heading2     |
| row1 column1 | row1 column2 |
| row2 column1 | row2 column2 |
| row3 column1 | row3 column2 |
+--------------+--------------+

Sometimes the last row can be though of a total (summary) row, by default it isn’t. You can turn on the las row separator (the only thing that makes the last row a “total” row) by setting table.inner_footing_row_border = True.

table.inner_heading_row_border = True
table.inner_footing_row_border = True
print table.table
+--------------+--------------+
| Heading1     | Heading2     |
+--------------+--------------+
| row1 column1 | row1 column2 |
| row2 column1 | row2 column2 |
+--------------+--------------+
| row3 column1 | row3 column2 |
+--------------+--------------+

If you want to add colors or bold the heading row, you’ll have to do that yourself. Keep in mind that terminaltables relies on len() and other methods for calculating table borders. I suggest looking at colorclass for supporting colors in terminaltables since it handles color string lengths correctly.

Class Attributes

You can instantiate with AsciiTable(table_data) or AsciiTable(table_data, 'Table Title'). These are available after instantiating any table class.

Name

Description/Notes

table_data

List of list of strings. Same object passed to __init__().

title

Table title string. Default is None for no title.

inner_column_border

Default is True. Separates columns.

inner_footing_row_border

Default is False. This is what makes the last row a “footer row”.

inner_heading_row_border

Default is True. This is what makes the first row a “header row”.

inner_row_border

Default is False. This adds lines between rows.

justify_columns

Dictionary. Keys are column numbers (0 base), values are ‘left’, ‘right’, or ‘center’.

outer_border

Default is True. Toggles the top, bottom, left, and right table borders.

padding_left

Default is 1. Number of spaces to add to the left of the cell.

padding_right

Default is 1. Number of spaces to add to the right of the cell.

Class Methods

These are regular methods available in either class.

Name

Description/Notes

column_max_width

Takes one argument, column number (0 base). Returns The maximum size it will fit in the terminal without breaking the table. Takes other columns into account.

Class Properties

These are read-only properties after you instantiate either class. They are “real-time”. You do not have to re-instantiate if you change any of the class attributes, including table_data.

Name

Description/Notes

column_widths

Returns a list with the current column widths (one int per column) without padding.

ok

Returns True if the table fits within the terminal width, False if the table breaks.

padded_table_data

Returns the padding table data. With spaces and newlines. Does not include borders.

table

Returns a large string, the whole table. This may be printed to the terminal.

table_width

Returns the width of the table including padding and borders.

Changelog

This project adheres to Semantic Versioning.

1.2.1 - 2015-09-03

Fixed:

1.2.0 - 2015-05-31

Added:
  • Bottom row separator.

1.1.1 - 2014-11-03

Fixed
  • Python 2.7 64-bit terminal width bug on Windows.

1.1.0 - 2014-11-02

Added:
  • Windows support.

  • Double-lined table.

1.0.2 - 2014-09-18

Added
  • table_width and ok properties.

1.0.1 - 2014-09-12

Added
  • Terminal width/height defaults for testing.

  • terminaltables.DEFAULT_TERMINAL_WIDTH

  • terminaltables.DEFAULT_TERMINAL_HEIGHT

1.0.0 - 2014-09-11

  • Initial release.

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

terminaltables-1.2.1.tar.gz (8.7 kB view details)

Uploaded Source

File details

Details for the file terminaltables-1.2.1.tar.gz.

File metadata

File hashes

Hashes for terminaltables-1.2.1.tar.gz
Algorithm Hash digest
SHA256 cf5f0fb6c6c3070d7af73537ded030858c122f253c87e7221f9a6da3782ce787
MD5 5686180a5bf1440aee54acb2bba48ed4
BLAKE2b-256 3d1714aa6521b337be46c51dd7b31e7e617801e9f8db7f48583c767c02e0e72a

See more details on using hashes here.

Supported by

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