Crate vortex_tui

Crate vortex_tui 

Source
Expand description

Vortex TUI library for interactively browsing and inspecting Vortex files.

This crate provides both a CLI tool (vx) and a library API for working with Vortex files. Users can bring their own VortexSession to enable custom encodings and extensions.

§Example

use vortex::session::VortexSession;
use vortex::io::session::RuntimeSessionExt;
use vortex_tui::browse;

let session = VortexSession::default().with_tokio();
browse::exec_tui(&session, "my_file.vortex").await?;

Modules§

browse
Interactive TUI browser for Vortex files.
convert
Convert Parquet files to Vortex format.
inspect
Inspect Vortex file metadata and structure.
tree
Print tree views of Vortex files.

Functions§

launch
Main entrypoint for vx that launches a VortexSession.