You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Why json2sql?** Moving data from JSON into a database should be one command, not a script you maintain. json2sql takes JSON files — flat or nested — and produces correct SQL INSERT statements in your dialect of choice. Nested objects are automatically flattened into relational tables. Arrays become multiple INSERT rows. Type inference handles strings, numbers, booleans, and nulls without configuration. Pipe data from stdin, specify the table name, and get clean SQL out. Zero dependencies beyond Python 3.10+ and the CLI.
15
+
**Why json2sql?** Moving data from JSON into a database should be one command, not a script you maintain. json2sql takes JSON files — flat or nested — and produces correct SQL INSERT statements in your dialect of choice. Nested objects are automatically flattened into relational tables. Arrays become multiple INSERT rows. Type inference handles strings, numbers, booleans, and nulls without configuration. Pipe data from stdin, specify the table name, and get clean SQL out. Zero dependencies beyond Python 3.10+ and the CLI.
16
16
17
17
## Installation
18
18
@@ -47,7 +47,7 @@ Then run: `json2sql --help`
47
47
## Quick Start
48
48
49
49
```bash
50
-
# Basic usage — converts JSON to SQL INSERT statements
50
+
# Basic usage — converts JSON to SQL INSERT statements
51
51
json2sql convert data.json
52
52
53
53
# Specify output dialect
@@ -87,37 +87,37 @@ sqlite3 test.db < seed.sql
87
87
88
88
## Pricing
89
89
90
-
json2sql is one of eight tools in the Revenue Holdings suite. One license covers all CLI tools.
90
+
json2sql is one of eight tools in the DevForge suite. One license covers all CLI tools.
0 commit comments