Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Python Module

Datui is distributed on Pypi.

Install using pip:

pip install datui

Viewing a LazyFrame or DataFrame

View your LazyFrame (or DataFrame) in the terminal:

import polars as pl
import datui

# From a LazyFrame (e.g. scan)
lf = pl.scan_csv("data.csv")
datui.view(lf)

Press q to exit Datui.