Efficient large file CSV JSON streaming and chunking
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill csv-json-processing --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Csv Json Processing?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-csv-json-processing)More formats (shields.io, HTML) on the badges page.
---
name: csv-json-processing
description: "Efficient large file CSV JSON streaming and chunking"
---
# CSV/JSON Processing
## Streaming Large CSV
```python
import csv
with open("large.csv", "r") as f:
reader = csv.DictReader(f)
for row in reader:
process(row) # One row at a time
```
## Chunked JSON
```python
import json
def read_jsonl(path):
with open(path) as f:
for line in f:
yield json.loads(line)
for obj in read_jsonl("data.jsonl"):
process(obj)
```
## Convert Between Formats
```bash
# CSV to JSON
csvkit: csvjson data.csv > data.json
# JSON to CSV
jq -r '.[] | [.name, .email] | @csv' data.json > data.csv
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!