SQL queries formatting, syntactic and semantic validation
Project description
sqlvalidator
SQL queries formatting, syntactic and semantic validation
Work In Progress!
Command line usage
For formatting SQL:
sql.py
def fun():
return "select col1, column2 from table" # sqlformat
Command line:
$ sqlvalidator --format sql.py
reformatted sql.py (1 changed SQL)
1 file reformatted (1 changed SQL queries).
sql.py
def fun():
return """
SELECT
col1,
column2
FROM table
""" # sqlformat
The sqlformat comment is required to indicated to sqlvalidator that this string should be formatted.
One can verify also that the file would be reformatted or not:
$ sqlvalidator --check-format sql.py
would reformat sql.py (1 changed SQL)
1 file would be reformatted (1 changed SQL queries).
$ sqlvalidator --format sql.py
reformatted sql.py (1 changed SQL)
1 file reformatted (1 changed SQL queries).
$ sqlvalidator --check-format sql.py
No file would be reformatted.
$ sqlvalidator --format sql.py
No file reformatted.
--check-format won't write the file back and just return a status code:
- Status code 0 means nothing would change.
- Status code 1 means some files would reformatted.
API
Formatting
import sqlvalidator
formatted_sql = sqlvalidator.format_sql("SELECT * FROM table")
Validation
import sqlvalidator
sql_query = sqlvalidator.parse("SELECT * from table")
if not sql_query.is_valid():
print(sql_query.errors)
Warning: only limited test cases are currently handled by the validation
Details:
To be implemented yet, but should become the main added-value of this lib.
Ideally, this package should provide a basic SQL validation:
- not using a missing column
- existing functions
- correct aggregations
- schemaless (not assume that table names and columns in those exist)
- types correctness in functions
(only on SELECT-statements)
Internals
Testing
pytest
Publishing
python3 setup.py sdist bdist_wheel --universaltwine upload dist/sqlvalidator-X.Y.Z-py2.py3-none-any.whl dist/sqlvalidator-X.Y.Z.tar.gz
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sqlvalidator-0.0.7.tar.gz.
File metadata
- Download URL: sqlvalidator-0.0.7.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b49e7efe270be3bf44752433943a255297393367f69443e0bad768df9279cbfa
|
|
| MD5 |
e7ce1ed5a9c9a87a9bfe3d5c77a53e35
|
|
| BLAKE2b-256 |
74b92e5207b2c77f5c30f3eadef5c011e4893f52effb40ba24f8f82db98291b2
|
File details
Details for the file sqlvalidator-0.0.7-py2.py3-none-any.whl.
File metadata
- Download URL: sqlvalidator-0.0.7-py2.py3-none-any.whl
- Upload date:
- Size: 14.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2921f68887edc3cb535c9e51f4131aced29e64744bee2e1bdc73804ba429efaa
|
|
| MD5 |
06559818a3fa0c603ad023c391615d1b
|
|
| BLAKE2b-256 |
87e73edf3bf8b998fb5aba5130cc3cc5bb58659aa036d23d836a6accf22f9e6b
|