Skip to content

chriskamphuis/parquet-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

parquet-tools

pqt is a command line interface tool for analyzing parquet quickly. pqt makes use of duckdb to quickly analyze parquet files.

How to install

pqt is an easy-to-install package, which can be installed with pip from PyPi:

pip install pqt

Supported functionalities:

  • pqt.head example.parquet prints the first n (default: 10) rows of the parquet file example.parquet.

    • You can use the -n or --lines flag to change the number of rows to print.
  • pqt.tail example.parquet prints the last n (default: 10) rows of the parquet file example.parquet.

    • You can use the -n or --lines flag to change the number of rows to print.