Vince's CSV Parser
Loading...
Searching...
No Matches
Vince's CSV Library

This is the detailed documentation for Vince's CSV library. For quick examples, go to this project's GitHub page.

Python users should start with the fastpycsv Python bindings.

Outline

CSV Reading

See also

CSV Tuning

Working with parsed data

See also

Scalar Conversion Reference

DataFrame

An in-memory keyed table built from a csv::CSVReader. Supports O(1) key lookup, column extraction, editing, and grouping.

ETL Utilities

See also

High Performance ETL

Deep Dives

Implementation notes and internal architecture documents are collected under Internal / Deep Dives.

CSV Writing

The CSV Writing Guide contains a high-level overview of writing CSVs.

Frequently Asked Questions

How does automatic starting row detection work?

See "How does automatic delimiter detection work?"

How does automatic delimiter detection work?

See the implementation in csv::internals::_guess_format() — the source is the authoritative reference and is kept up to date.

Is the CSV parser thread-safe?

This library already does a lot of work behind the scenes to use threads to squeeze performance from your CPU. However, ambitious users who are in the mood for experimenting should follow these guidelines: