SQL queries formatting (and soon basic schema less validation)
Project description
sqlvalidator
SQL queries formatting (and soon basic schema less validation)
Formatting
Formatting can be used in 2 ways:
- formatting Python files that contain SQL strings tagged with
# sqlformatfrom the command line:
sqlvalidator --format myfile.py or sqlvalidator --format myproject/
- formatting Python strings that represent SQL:
sqlvalidator.format_sql("SELECT * FROM table")
Both output the same formatted string for the same input SQL.
One can verify that all files are correctly formatted using
sqlvalidator --check-format pyfile.py
Which 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.
Validation
To be implemented yet, but should become the main added-value of this lib.
Suggested API:
import sqlvalidator
sql_query = sqlvalidator.parse("SELECT * from table")
if not sql_query.is_valid():
print(sql_query.errors)
Ideally, this package should provide a basic SQL validation:
- not using a missing column
- existing functions
- correct aggregations
- schema-less (not assume that table names and columns in those exist)
- types correctness in functions
(only on SELECT-statements)
More advanced features:
- depending on the backend (standard SQL, postgresql, BigQuery, Legacy BigQuery...)
- Flexible internal SQL representation to do advanced validation
- With provided schema (to validate that columns exist)
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.1.tar.gz.
File metadata
- Download URL: sqlvalidator-0.0.1.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.6.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b8196da7517cecd445b5657fb84d7c01f9c906ce06d846399c9de2ae9410d46
|
|
| MD5 |
5111ec640f9b6000486d81847c84e142
|
|
| BLAKE2b-256 |
b49df41d392356f659b173d08afd9e36a64aacf5f56c445a571de985e91b579c
|
File details
Details for the file sqlvalidator-0.0.1-py2.py3-none-any.whl.
File metadata
- Download URL: sqlvalidator-0.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 25.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.6.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb05ebed9a2ffb1fe7a1b688512fad1514719f9b08366aa653094bf0a6d07677
|
|
| MD5 |
434b7c61106d9b65d6a95bccde61fd0d
|
|
| BLAKE2b-256 |
a2fe3be24f603f3c89d0872f7b18d7c1043b45a75882cff8e4c0d0ce1f8ee57f
|