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.25.tar.gz (32.8 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.25-py3-none-any.whl (44.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: supersql-2026.3.25.tar.gz
  • Upload date:
  • Size: 32.8 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.25.tar.gz
Algorithm Hash digest
SHA256 7ba7db6ce7b9b2a42341dad19f62398c33016c591ddc1dfbf0b10d2dba3367b9
MD5 c7820d97732e5b33895c487b1b0c9e26
BLAKE2b-256 2ac4634812d2c3f3554e23296d7c29099c8d90a7fab788d6dd40ccfe8b7951ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: supersql-2026.3.25-py3-none-any.whl
  • Upload date:
  • Size: 44.2 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.25-py3-none-any.whl
Algorithm Hash digest
SHA256 560883b56ba3d2374b5f47d8cc9efc741fdc49a164e26345c3cbab2e84e5bede
MD5 616ecb451f3259cd1889d800fa586180
BLAKE2b-256 2e949b0a474d2d447622e91c9bfa14552911440380bf905bee6dd58e78b2c41a

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