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.4.2.tar.gz (35.2 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.4.2-py3-none-any.whl (47.0 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for supersql-2026.4.2.tar.gz
Algorithm Hash digest
SHA256 145e49d2e6d133fe06ab41ec309c08f9638df5b633f078b91a3fb3e5311895c5
MD5 130febd8f1ea5d05a603db976572bdaa
BLAKE2b-256 0d9e76ae9913bba2168b647c2eb6d94cc5eb963ddddaa7343de892b2b1f8d577

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for supersql-2026.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3d8016f25616601753d7daf33bef9f006a09b0042e81ab749b18da39c67fee97
MD5 94e561d3d2de7e629894e67cfd6bb04b
BLAKE2b-256 93dbff1cbf2feda3f573d5fadb47dff4ab6553e11fe286b5e9b602a3e0d56604

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