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
`json_sql` is a Python library that allows you to run sql queries on JSON data. It is designed to be simple and easy to use, while providing powerful features for querying and manipulating JSON data.
4
+
5
+
## Usage
6
+
7
+
Assuming you have a directory structure like this:
8
+
9
+
```
10
+
.
11
+
├── organizations.json
12
+
├── projects.json
13
+
└── users.json
14
+
```
15
+
16
+
You can query the JSON files using SQL syntax. For example, to get all users from the `users` file, you can run:
17
+
18
+
```sh
19
+
json_sql "select * from users"
20
+
```
21
+
22
+
This will return all the users in the `users.json` file.
0 commit comments