Open Parquet

How to open a Parquet file

Apache Parquet is a compressed, columnar file format — which is exactly why double-clicking a .parquet file gets you nothing. It is binary, so Notepad, Excel, and text editors show gibberish, and most advice online starts with "install Python and pandas".

You do not need any of that for a quick look. viewparquet opens Parquet files directly in your browser: drag the file in and DuckDB-WASM parses it locally on your machine. Nothing is uploaded, there is no account, and it works the same on Windows, macOS, and Linux — including locked-down work laptops where you cannot install software.

Open a Parquet file in three steps

  1. Go to viewparquet.com

    No sign-up or install. The viewer runs entirely in your browser tab.

  2. Drag in your .parquet file

    Or click "Open a file" and pick it. The file is parsed locally with DuckDB-WASM — it never leaves your machine. You can also open a file straight from S3 or a URL.

  3. Browse rows, schema, and metadata

    Scroll millions of rows in the grid, check column names and types in the schema panel, and inspect row groups and compression in the metadata view. Run DuckDB SQL or export to CSV or JSON when you need more.

Common questions

What app opens a .parquet file?

No default desktop app opens .parquet files — the format is a binary, columnar data file, not a document. Use a Parquet viewer: viewparquet opens the file in your browser with no install, and command-line options include the DuckDB CLI and parquet-tools.

How do I open a Parquet file without Python or Spark?

Open it in a browser-based viewer. Drag the .parquet file into viewparquet and it loads instantly with DuckDB-WASM — no Python, pandas, Spark, or install required. You can browse rows, read the schema, and run SQL right away.

How do I open a Parquet file on Windows?

Open your browser (Edge or Chrome both work), go to viewparquet.com, and drag the .parquet file into the page. Nothing is installed and the file is processed locally, so it also works on corporate machines without admin rights.

Can Excel open a Parquet file?

Not by double-clicking. Recent Microsoft 365 versions can import Parquet through Power Query (Get Data), but the quickest universal path is to open the file in viewparquet, export it to CSV, and open the CSV in Excel.

Is it safe to open a confidential Parquet file this way?

Yes. viewparquet processes files entirely client-side with DuckDB-WASM — data is never uploaded to a server. You can verify this in your browser DevTools Network panel: nothing leaves the tab while you open and query the file.

What about very large Parquet files?

viewparquet streams and paginates instead of loading every row into memory, so size is limited mainly by your browser’s available memory. Multi-gigabyte files open fine; query only the columns and rows you need to keep memory low.

Related

Try it on your own file

Drop a Parquet, GeoParquet, CSV, or JSON file into viewparquet — browse rows, run DuckDB SQL, and export results, all locally in your browser. Nothing is uploaded.