Convert TSV files to Apache Parquet in your browser. Choose a compression codec and download the result locally — files never leave the page.
Drop a .tsv file — tab-separated values, the shape database dumps and clipboard-pasted tables arrive in. The header row becomes column names, values are type-detected, and after a preview you download a typed .parquet with your chosen codec. Everything runs in your browser; nothing uploads.
For very large TSVs: pandas read_csv(sep='\t').to_parquet() or DuckDB read_csv with delim='\t' and COPY … TO FORMAT PARQUET.