Metadata-Version: 2.1
Name: abstra-json-sql
Version: 0.0.4
Summary: run SQL queries on JSON data
Home-page: https://github.com/abstra-app/json-sql
Author: Abstra
Author-email: help@abstra.app
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.8, <4
Description-Content-Type: text/markdown

# json_sql

`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.

## Usage

Assuming you have a directory structure like this:

```
.
├── organizations.json
├── projects.json
└── users.json
```

You can query the JSON files using SQL syntax. For example, to get all users from the `users` file, you can run:

```sh
abstra-json-sql "select * from users"
```

This will return all the users in the `users.json` file.

## Installation

You can install `json_sql` using pip:

```sh
pip install abstra-json-sql
```

