/sqlformat-py

A Python wrapper around sqlformat-rs.

Primary LanguageRustMIT LicenseMIT

sqlformat-py

Build

A Python wrapper around sqlformat-rs. (https://github.com/shssoichiro/sqlformat-rs)

Supported Python Versions: 3.7+

Usage:

>>> import sqlformat
>>> print(sqlformat.format("SELECT * FROM TABLE_NAME"))
SELECT
  *
FROM
  TABLE_NAME