Skip to main content

Module csv

Module csv 

Source
Expand description

CSV ingestion: CsvConfig, CsvReader, and StreamingCsvProcessor.

Provides CSV parsing into DataFrame and streaming aggregation (sum, min/max) without materializing the full frame.

Structs§

CsvConfig
Configuration for CsvReader.
CsvReader
Zero-copy CSV parser for byte slices.
StreamingCsvProcessor
Streaming CSV processor that visits rows one at a time without materializing the full DataFrame. Memory usage is O(ncols).