Skip to content

Instantly share code, notes, and snippets.

View baggiponte's full-sized avatar
📈
coding

baggiponte baggiponte

📈
coding
View GitHub Profile
@baggiponte
baggiponte / repro.py
Created April 16, 2023 17:16
Pandas vs Polars read gzipped JSONL
import gzip
from pathlib import Path
import pandas as pd
import polars as pl
destination = Path("./generated.jsonl.gz")
if not destination.exists():