Convert data between CSV, JSON, Markdown, and SQL — from the command line. One purchase, lifetime updates.
cat data.csv | dataforge convert -o json)$ dataforge convert data.csv -o json
[
{"name": "Alice", "age": 30, "city": "NYC"},
{"name": "Bob", "age": 25, "city": "SF"}
]
$ dataforge convert data.json -o markdown
| name | age | city |
|-------|-----|------|
| Alice | 30 | NYC |
| Bob | 25 | SF |
$ piped example
$ curl https://api.example.com/users | dataforge convert -o csv
pip install dataforge-cli
Requires Python 3.8+ · Works on Linux, macOS, Windows
You write code every time. Debugging, edge cases, different formats. Time wasted.
One command. Any format. No thinking. Works in pipelines, scripts, and CI/CD.
Can't afford $10 right now? Clone from GitHub and run from source.