An open API service indexing awesome lists of open source software.

https://github.com/nomorepanic/squel

SQL parsing, done right.
https://github.com/nomorepanic/squel

Last synced: 4 months ago
JSON representation

SQL parsing, done right.

Awesome Lists containing this project

README

          

# Squel

SQL parsing, done right.

WIP, but you can you use it as base. Just add the missing definitions to
the grammar.

## Example

```python
from squel.app import Squel

tree = Squel.parse('hello.sql')
print(tree.pretty())
```

### CLI

```sh
squel parse hello.sql
```