Skip to main content

A tool to format SQL code in Jupyter notebooks.

Project description

sqlnbfmt

PyPI License Python Versions

A SQL formatter designed specifically for Jupyter Notebooks. sqlnbfmt automatically formats SQL queries embedded in code cells, including both Python strings and SQL magic cells (%%sql), helping you maintain clean and consistent code.

Features

  • 🎯 Smart SQL Detection: Automatically identifies and formats SQL queries in code cells and magic SQL cells
  • 🌳 AST-Powered: Uses Abstract Syntax Tree parsing for accurate SQL string identification
  • 🔒 Safe Formatting: Preserves query parameters (e.g., %s, ?) and SQL comments
  • ⚙️ Highly Configurable: Customize formatting through YAML configuration
  • 🔄 Pre-commit Ready: Seamlessly integrates with pre-commit hooks
  • 📦 Zero Dependencies: Minimal installation footprint

Installation

pip install sqlnbfmt

Usage

Command Line

Format a single notebook:

sqlnbfmt path/to/your_notebook.ipynb

Format all notebooks in a directory:

sqlnbfmt path/to/notebooks/

Pre-commit Integration

  1. Install pre-commit:
pip install pre-commit
  1. Add to .pre-commit-config.yaml:
repos:
  - repo: local
    hooks:
      - id: sqlnbfmt
        name: sqlnbfmt
        entry: sqlnbfmt
        language: system
        types: [jupyter]
        args: [--config, config.yaml, --dialect, mysql]

Please fun the following command in your CMD for help:

sqlnbfmt -h
  1. Install the hook:
pre-commit install
  1. (Optional) Run on all files:
pre-commit run --all-files

Configuration

Create a config.yaml file to customize formatting behavior. Here is a template.

Configuration Options

Option Description Default
sql_keywords SQL keywords to recognize and format Common SQL keywords
function_names Python functions containing SQL code []
sql_decorators Decorators indicating SQL code []
single_line_threshold Maximum length before splitting SQL 80
indent_width Number of spaces for indentation 4

Example

Before formatting:

execute_sql("""SELECT a.col1, b.col2 FROM table_a a JOIN table_b b ON a.id = b.a_id WHERE a.status = 'active' ORDER BY a.created_at DESC""")

After formatting:

execute_sql("""
SELECT
  a.col1,
  b.col2
FROM
  table_a AS a
JOIN
  table_b AS b
  ON a.id = b.a_id
WHERE
  a.status = 'active'
ORDER BY
  a.created_at DESC
""")

Contributing

We welcome contributions! Here's how to get started:

  1. Clone the repository:
git clone https://github.com/flyersworder/sqlnbfmt.git
cd sqlnbfmt
  1. Use uv to sync the environment:
uv sync
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
  1. Run tests:
pytest

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • sqlglot - SQL parsing and formatting engine
  • All contributors and early adopters who helped shape this tool

Made with ♥️ by the sqlnbfmt team

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sqlnbfmt-0.1.1.tar.gz (11.4 kB view details)

Uploaded Source

Built Distribution

sqlnbfmt-0.1.1-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file sqlnbfmt-0.1.1.tar.gz.

File metadata

  • Download URL: sqlnbfmt-0.1.1.tar.gz
  • Upload date:
  • Size: 11.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for sqlnbfmt-0.1.1.tar.gz
Algorithm Hash digest
SHA256 d52329275ee552dc4b8ec82d2a221e010ab5fe25b1c2e4f861d7413f246b15b7
MD5 58e49f15de99bcda8047bf4c726d596c
BLAKE2b-256 2e992f6eb6316f6e3573da618dd334e2744811473c2383a72c40c4137078cbef

See more details on using hashes here.

File details

Details for the file sqlnbfmt-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: sqlnbfmt-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 8.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for sqlnbfmt-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 75eb64bc3aa30ea0e23d2924eaf92a1dcfb88b2dfe593d9091a4d487721d94e5
MD5 81eb608f475d2cae50153007cbf35114
BLAKE2b-256 64c2ec34a8ec8b548ff68b25fd7a9070693bb4f8c7e1abeb81cbf60968206d4e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page