Skip to main content

Thin wrapper on top of SQL that enables you write SQL code in python easily

Project description

SuperSQL: SQL for Humans

SuperSQL is a powerful, pythonic SQL query builder that lets you write SQL using native Python objects.

It is NOT an ORM. There are no magic .save() methods, no hidden lazy-loading, and no confusing state management. You write explicit SQL queries (SELECT, INSERT, UPDATE) using a fluent Python API that looks and feels like SQL, but with the power of Python's type system and tooling.


Features

  • Pythonic Syntax: Write SQL using chainable Python methods (.SELECT().FROM().WHERE()).
  • Type Safe: Define tables using Python classes for autocomplete and validation.
  • Vendor Agnostic: Support for PostgreSQL, MySQL, SQLite, Oracle, and SQL Server.
  • Async & Sync: Built for modern async Python (asyncio) but supports sync execution.
  • No Magic: You control the exact SQL being generated.
  • Pytastic Integration: Built-in schema validation using Pytastic.

Installation

# Install with PostgreSQL support
pip install supersql[postgres]

# Or with all drivers
pip install supersql[postgres,mysql,sqlite]

Quick Start

from supersql import Query, Table

# 1. Connect to your database
query = Query("postgres", database="mydb")

# 2. Define your Table (Dynamic, no class needed!)
users = Table("users")

# 3. Write Pythonic SQL
# SELECT name, email FROM users WHERE age > 25
results = await query.SELECT(
    users.name, users.email
).FROM(
    users
).WHERE(
    users.age > 25
).run()

Why SuperSQL?

SuperSQL gives you the power of a Query Builder without the overhead of an ORM.

  1. Zero Boilerplate: No need to define classes or duplicate your schema in Python.
  2. Explicit Control: You control the exact SQL execution.
  3. Dynamic: Works great with ad-hoc queries or evolving schemas.

Read the Documentation

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

supersql-2026.3.29.tar.gz (34.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

supersql-2026.3.29-py3-none-any.whl (46.0 kB view details)

Uploaded Python 3

File details

Details for the file supersql-2026.3.29.tar.gz.

File metadata

  • Download URL: supersql-2026.3.29.tar.gz
  • Upload date:
  • Size: 34.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.12.3 Linux/6.17.0-19-generic

File hashes

Hashes for supersql-2026.3.29.tar.gz
Algorithm Hash digest
SHA256 b3f9316fb27335910e3ee98c6c1c44352f56ee9f1e51a6b182c39c66d0f0b94f
MD5 d17f47812f84da3702dc38a4f9e56a39
BLAKE2b-256 60ffc5925c057512df5043277145864d2e4cf07962bb09003ff8a0ace11a1b0a

See more details on using hashes here.

File details

Details for the file supersql-2026.3.29-py3-none-any.whl.

File metadata

  • Download URL: supersql-2026.3.29-py3-none-any.whl
  • Upload date:
  • Size: 46.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.12.3 Linux/6.17.0-19-generic

File hashes

Hashes for supersql-2026.3.29-py3-none-any.whl
Algorithm Hash digest
SHA256 fe1887aff3e964b972d4bc86f5266fd14524e61d2cda1816bd9e841866e16cdc
MD5 5702962acf3c704e945e77f7a7c2ca8f
BLAKE2b-256 23ca17b09a2876e727af1a74fb9ead70e6764d4d263c88d4f74b59e8b7093f5f

See more details on using hashes here.

Supported by

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