reactable-py

reactable generates interactive tables in Python. It's a port of the R package reactable by @glin.

See these handy documentation pages:

Features

  • controls: sorting, filtering, and pagination.
  • structure: grouping, aggregating, expanding rows.
  • format: represent numbers, dates, currencies.
  • style: conditional styling for headers, cell values, and more.

Installing

pip install reactable

Basic use

Use with jupyter notebooks or quarto documents (.qmd) to display tables.

from reactable import Reactable, embed_css
from reactable.data import sleep

embed_css()

Reactable(sleep)

reactable example table using the sleep dataset

Learn more

Essentials

Controls

Structure

Format

Style

Extra