Skip to main content

textual-fastdatatable

A performance-focused reimplementation of Textual's DataTable widget, with a pluggable data storage backend.

Textual's built-in DataTable widget is beautiful and powerful, but it can be slow to load large datasets.

Here are some benchmarks on my relatively weak laptop. For each benchmark, we initialize a Textual App that loads a dataset from a parquet file and mounts a data table; it then scrolls around the table (10 pagedowns and 15 right arrows).

For the built-in table and the others marked "from Records", the data is loaded into memory before the timer is started; for the "Arrow from Parquet" back-end, the timer is started immediately.

The times in each column represent the time to the first paint of the table, and the time after scrolling is completed (we wait until the table is fully rendered after each scroll):

Records Built-In DataTable FastDataTable (Arrow from Parquet) FastDataTable (Arrow from Records) FastDataTable (Numpy from Records)
lap_times_100.parquet 0.019s / 1.716s 0.012s / 1.724s 0.011s / 1.700s 0.011s / 1.688s
lap_times_1000.parquet 0.103s / 1.931s 0.011s / 1.859s 0.011s / 1.799s 0.015s / 1.848s
lap_times_10000.parquet 0.977s / 2.824s 0.013s / 1.834s 0.016s / 1.812s 0.078s / 1.869s
lap_times_100000.parquet 11.773s / 13.770s 0.025s / 1.790s 0.156s / 1.824s 0.567s / 2.347s
lap_times_538121.parquet 62.960s / 65.760s 0.077s / 1.803s 0.379s / 2.234s 3.324s / 5.031s
wide_10000.parquet 5.110s / 10.539s 0.024s / 3.373s 0.042s / 3.278s 0.369s / 3.461s
wide_100000.parquet 51.144s / 56.604s 0.054s / 3.294s 0.429s / 3.642s 3.628s / 6.732s

NB: FastDataTable currently does not support rows with a height of more than one line. See below for more limitations, relative to the built-in DataTable.

Installation

pip install textual-fastdatatable

Usage

If you already have data in Apache Arrow or another common table format:

from textual_fastdatatable import DataTable
data_table = DataTable(data = my_data)

The currently supported types are:

AutoBackendType = Union[
    pa.Table,
    pa.RecordBatch,
    Path, # to parquet only
    str, # path to parquet only
    Sequence[Iterable[Any]],
    Mapping[str, Sequence[Any]],
    pl.DataFrame, # requires the polars extra
    pd.DataFrame,
]

A pandas DataFrame is converted with pa.Table.from_pandas and displayed by the ArrowBackend, so it needs no extra. The conversion drops the frame's index; call df.reset_index() first if you want to see it as a column.

A polars DataFrame is displayed by the PolarsBackend, which requires the extra:

pip install textual-fastdatatable[polars]

To override the column labels and widths supplied by the backend:

from textual_fastdatatable import DataTable
data_table = DataTable(data = my_data, column_labels=["Supports", "[red]Console[/]", "Markup!"], column_widths=[10, 5, None])

You can also pass in a backend manually (if you want more control or want to plug in your own).

from textual_fastdatatable import ArrowBackend, DataTable, create_backend
backend = create_backend(my_data)
backend = ArrowBackend(my_arrow_table)
# from python dictionary in the form key: col_values
backend = ArrowBackend.from_pydict(
    {
        "col one": [1, 2, 3 ,4],
        "col two": ["a", "b", "c", "d"],
    }
)
# from a list of tuples or another sequence of iterables
backend = ArrowBackend.from_records(
    [
        ("col one", "col two"),
        (1, "a"),
        (2, "b"),
        (3, "c"),
        (4, "d"),
    ]
)
# from a path to a Parquet file:
backend = ArrowBackend.from_parquet("path/to/file.parquet")

Supplying column names

If you have names for the columns that the data itself doesn't carry — a database cursor's description, say — pass them to create_backend as column_names:

from textual_fastdatatable import create_backend
backend = create_backend([(1, "a"), (2, "b")], column_names=["id", "letter"])
backend.columns  # ["id", "letter"], instead of ["f0", "f1"]

They also let a query that returned no rows keep its header, which is otherwise impossible to express:

create_backend(None)                              # raises TypeError
create_backend(None, column_names=["id", "letter"]).columns  # ["id", "letter"]
create_backend([], column_names=["id", "letter"]).columns    # ["id", "letter"]

For data that already has columns (an Arrow table, a DataFrame, a Parquet or CSV file, a dict), the names are applied when there is one for each column; a mismatched count leaves the data's own names alone. Duplicate names are allowed — select 1 as a, 2 as a is legal SQL — and reach ArrowBackend.source_data verbatim, though ArrowBackend.data (what the widget displays) de-duplicates them to a, a0.

Limitations and Caveats

The DataTable does not currently support rows with a height of more than one line. Only the first line of each row will be displayed.

The DataTable does not currently support row labels.

The ArrowBackend is optimized to be fast for large, immutable datasets. Mutating the data, especially adding or removing rows, may be slow.

The ArrowBackend cannot be initialized without data, however, the DataTable can (either with or without column_labels).

The ArrowBackend cannot store arbitrary Python objects or Rich Renderables as values. It may widen types to strings unnecessarily.

Additional Features

Copying Data from the Table

ctrl+c will post a SelectionCopied message with a list of tuples of the values selected by the cursor. To use, initialize with cursor_type=range from an app that does NOT inherit bindings.

from textual.app import App, ComposeResult

from textual_fastdatatable import ArrowBackend, DataTable


class TableApp(App, inherit_bindings=False):
    BINDINGS = [("ctrl+q", "quit", "Quit")]

    def compose(self) -> ComposeResult:
        backend = ArrowBackend.from_parquet("./tests/data/lap_times_538121.parquet")
        yield DataTable(backend=backend, cursor_type="range")


if __name__ == "__main__":
    app = TableApp()
    app.run()

Truncating long values

The DataTable will automatically calculate column widths; if you set a max_column_content_width at initialization, it will truncate any long values at that width; the full value will be visible on hover in a tooltip (and the full value will always be copied to the clipboard).

Download files

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

Source Distribution

textual_fastdatatable-0.17.0.tar.gz (38.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

textual_fastdatatable-0.17.0-py3-none-any.whl (35.6 kB view details)

Uploaded Python 3

File details

Details for the file textual_fastdatatable-0.17.0.tar.gz.

File metadata

  • Download URL: textual_fastdatatable-0.17.0.tar.gz
  • Upload date:
  • Size: 38.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for textual_fastdatatable-0.17.0.tar.gz
Algorithm Hash digest
SHA256 3b1ea1f78aa7aa7ab41df9fb2b3b926fb274bbe8cb2e4f622b16a500eeb2157c
MD5 ba8ca4e4ad0b0fb425e2a19b3db44880
BLAKE2b-256 822af5844539d1ab139a220ee29ca81552cdd3e794048456a4b23a714f868e11

See more details on using hashes here.

Provenance

The following attestation bundles were made for textual_fastdatatable-0.17.0.tar.gz:

Publisher: publish.yml on tconbeer/textual-fastdatatable

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file textual_fastdatatable-0.17.0-py3-none-any.whl.

File metadata

File hashes

Hashes for textual_fastdatatable-0.17.0-py3-none-any.whl
Algorithm Hash digest
SHA256 68cdf5461135d68258d1a04382f947f9ec0e51209041f3bee5fc7ec03c98793e
MD5 02075cd15b83f6a5c2815c1e6f617f7e
BLAKE2b-256 9eb3492b452bff8ec06100a5564895d976649847bd185283dcef5da968e45314

See more details on using hashes here.

Provenance

The following attestation bundles were made for textual_fastdatatable-0.17.0-py3-none-any.whl:

Publisher: publish.yml on tconbeer/textual-fastdatatable

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.19.0

2 files

0.18.0

2 files

0.17.1

2 files

This release

0.17.0 This release

2 files

0.16.1

2 files

0.16.0

2 files

0.15.0

2 files

0.14.0

2 files

0.13.0

2 files

0.12.0

2 files

0.11.0

2 files

0.10.0

2 files

0.9.0

2 files

0.8.0

2 files

0.7.1

2 files

0.7.0

2 files

0.6.3

2 files

0.6.2

2 files

0.6.1

2 files

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

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