← Back to Tools

DataForge CLI

Convert data between CSV, JSON, Markdown, and SQL — from the command line. One purchase, lifetime updates.

$10 USD
One-time payment · Lifetime updates · MIT licensed
Buy Now →
🔒 Stripe checkout ⬇ Instant download
View source on GitHub →

Features

Quick Demo

$ Convert CSV to 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

Install

pip install dataforge-cli

Requires Python 3.8+ · Works on Linux, macOS, Windows

Why DataForge?

🐍 One-off Python scripts

You write code every time. Debugging, edge cases, different formats. Time wasted.

⚡ DataForge CLI

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.