Code Issues Releases

Releases

v1.0.0 - Initial Release

v1.0.0 · August 26, 2026

main

csv-to-json v1.0.0

A lightweight, zero-dependency CSV-to-JSON converter built for AI agent workflows.

Features

  • Type inference: Automatically converts numeric, boolean, and null values
  • Nested key expansion: Dot-notation headers (e.g. user.name) become nested JSON objects
  • Streaming: Process large CSV files without loading entirely into memory
  • Flexible input: Accepts file paths, raw CSV strings, or stdin
  • CLI and library: Use from command line or import as a Python module

Usage

python src/csv_converter.py data.csv -o output.json

Requires Python 3.10+. No external dependencies.