psqlparse
This Python module uses the libpg_query to parse SQL queries and return the internal PostgreSQL parsetree.
Installation
pip install psqlparse
Usage
import psqlparse
statements = psqlparse.parse('SELECT * from mytable')
used_tables = statements[0].tables() # ['my_table']
Development
- Install requirements:
pip install -r requirements.txt
- Build Cython extension
USE_CYTHON=1 python setup.py build_ext --inplace
-
Perform changes
-
Run tests
pytest