Live data from Hacker News

Show HN: Parqeye – A CLI tool to visualize and inspect Parquet files

github.com

31–37 of 37 posts

Re: Show HN: Parqeye – A CLI tool to visualize and inspect Parquet files

#32

Yours looks much better for your use case, but fwiw you can do it in a single command with duckdb too (but not interactive etc.): duckdb -c "from 'foo.parquet'" but maybe still useful for other formats or multi-file or remote situations

I use a little shell alias that drops me into duckdb with the file loaded into a table for interactive querying:

https://github.com/llimllib/personal_code/blob/c1a74b1b9527f...

Re: Show HN: Parqeye – A CLI tool to visualize and inspect Parquet files

#35
Great! I worked a lot with parquet like 5 years ago. The frustration and tilt working with the tooling was immense. Thank you for building this, it feels like resolving some old knot in my soul.

Some kind soul made this repository then, and I found it on like the 13th page of Google while in the depths of despair. It is my most treasured GitHub star, a the shining beacon that saved me. I see it has saved 17 other people too.

https://github.com/casidiablo/parquet-tools-for-dumb-people-...

Re: Show HN: Parqeye – A CLI tool to visualize and inspect Parquet files

#36
It's unfortunate that Python and R don't really have any out-of-the-box means of opening data files from arguments, but if you do this kind of stuff on a daily basis it's something that you can set up. My not directly usable examples below.

Python (uv + dataiter, but easy to modify for pandas or polars): https://github.com/otsaloma/dataiter/blob/master/bin/di-open

R (as per comment, requires also ~/.Rprofile code, nanoparquet in this case): https://github.com/otsaloma/R-tools/blob/master/r-load

Post reply on HN