The lightweight Parquet viewer for data professionals

Pink Parquet gives you a clean, user-friendly interface to inspect and analyze Parquet data. Open-source, cross-platform, and built for your daily workflow.

Pink Parquet application interface showing Parquet data grid and SQL editor

Powerful Features

Advanced

SQL Editor & Multi-file Workspace

Open multiple Parquet files simultaneously and treat them as a unified dataset. Use standard SQL to perform complex joins and cross-file analysis without any setup.

  • Join disparate Parquet files in a single query
  • Full SQL syntax support for deep aggregations
  • Manage your files in a persistent workspace
SELECT product_name, country, SUM(gross_sales)
FROM sales_table
JOIN products_table USING(product_id)
GROUP BY product_name, country
HAVING SUM(gross_sales) > 100000
ORDER BY product_name, country;
High Performance

High-Performance Rust Core

Engineered with Rust for near-hardware speeds and ironclad memory safety. Pink Parquet efficiently streams millions of rows, ensuring a fluid experience even on resource-constrained hardware or older laptops.

  • Native I/O: Direct Parquet processing without virtual machine overhead
  • Memory Efficiency: Predictable, low RAM usage
  • Zero-Latency UI: Data analysis that never freezes your workflow
written with rust picture
Insightful

Instant Column Statistics

Get immediate insights into your data distribution. Pink Parquet automatically calculates basic statistics for every column, including min, max, average, and null counts.

  • Schema-aware summaries for every column
  • Quick overview of missing values
  • Data distribution chart for each numeric column
Y1976
Null Values: 1447 (15.0%)
Min: -4.26
Max: 7.69
Mean: 0.22
Percentile 25: -0.22
Median: 0.31
Percentile 75: 0.59
Distribution
Customizable

Font selection for Tabular Data

Fine-tune your viewing experience with specialized typography. Use Iosevka as your narrow default to fit more columns on screen, or choose one from 5 other monaspace fonts.

  • Dynamic font size adjustment
  • Ultra-narrow font for dense data tables
  • 5 additional high-readability monospace options
Comparison of different monospace fonts like Iosevka and Monaspace in Pink Parquet
Ecosystem

VS Code Integration

Stay in your flow. Launch Pink Parquet directly from your development environment with the Pink Parquet Opener extension, making Parquet inspection as natural as opening a text file.

  • Context menu "Open in Pink Parquet" option
  • Lightweight and non-intrusive
  • Bridge the gap between code and data
sales_table.parquet
Ctrl+Enter
VS Code logo