Skip to main content

A Pythonic DSL for SQL conditions and expressions.

Project description

expressql — Build complex SQL expressions in pure Python with safe, intuitive syntax

CI PyPI version PyPI downloads Python versions License: MIT

expressql is a flexible, Pythonic Domain-Specific Language (DSL) for constructing complex SQL conditions and expressions safely and expressively.
It is designed to reduce boilerplate, prevent common SQL mistakes, and allow arithmetic, logical, and chained comparisons directly in Python syntax.

Supports Python 3.8 through 3.14 with comprehensive test coverage across all versions.


🚀 Features

✅ Arithmetic expressions with automatic SQL translation
✅ Logical composition (AND, OR, NOT) using natural Python operators
✅ Chained inequalities (50 < col("age") < 80)
✅ SQL-safe placeholder management
✅ Null-safe operations (is_null, not_null)
✅ Set membership (IN, NOT IN)
✅ Supports custom SQL functions (Func(...))
✅ Fluent API for advanced condition building
Parsing of SQL-like strings into expressions and conditions
Automatic expansion of BETWEEN clauses into composite comparisons


🔗 Ecosystem

expressql is part of a complete SQL toolkit for Python:

  • expressql (this package) - Build SQL expressions and conditions with safe, intuitive syntax
  • recordsql - Full query builder for DML operations (SELECT, INSERT, UPDATE, DELETE, JOIN, WITH)
  • tablesqlite - SQLite schema management and DDL operations (CREATE TABLE, ALTER TABLE, migrations)

Use them independently or together for a complete, type-safe SQL solution.


⚡ Quick Example

from expressql import col, cols, Func

age, salary, department = cols("age", "salary", "department")

condition = ((age > 30) * (department == "HR")) + (salary > 50000)

print(condition.placeholder_pair())
# ('((age > ?) AND (department = ?)) OR (salary > ?)', [30, 'HR', 50000])

🧠 Parsing SQL-Like Strings

You can parse raw strings into full SQL-safe expressions:

from expressql.parsers import parse_expression

expr = parse_expression("LOG(age, 10) + CUSTOM_FUNC(salary, bonus + 10) + 15")
print(expr.placeholder_pair())
# ('(? + LOG(age, ?) + CUSTOM_FUNC(salary, (bonus + ?)))', [15, 10, 10])

Or transform high-level condition strings:

from expressql.parsers import parse_condition

cond = parse_condition("age BETWEEN 30 AND 50 AND department = 'IT'")
print(cond.placeholder_pair())
# ('(age >= ? AND age <= ?) AND (department = ?)', [30, 50, 'IT'])

Auto-convert BETWEEN clauses:

from expressql.parsers import transform_betweens

s = "weight/POWER(height, 2) BETWEEN 18.5 AND 24.9 AND age >= 18"
print(transform_betweens(s))
# '(weight / POWER(height, 2) >= 18.5 AND weight / POWER(height, 2) <= 24.9 AND age >= 18)'

🧩 Key Concepts

1️⃣ Expressions & Comparisons

from expressql import col

age = col("age")
condition = (age + 10) > 50

SQL:

(age + 10) > 50

2️⃣ Chained Conditions

score = col("score")
cond = (50 < score) < 80  # Equivalent to 50 < score < 80

SQL:

(score > 50 AND score < 80)

3️⃣ Logical Composition

Use * or & for AND, + or | for OR, and ~ for NOT:

salary = col("salary")
dept = col("department")
cond = (salary > 40000) * (dept == "IT")

SQL:

(salary > 40000 AND department = 'IT')

4️⃣ Functions

Functions can be called directly on expressions if they are uppercase:

from expressql import col

total = col("salary") + col("bonus")
cond = total.LOG() > 10

SQL:

LOG((salary + bonus)) > 10

Custom functions:

from expressql import functions as f, cols

salary, bonus, passive_incomes = cols("salary", "bonus", "passive_incomes")
func_expr = f.CUSTOM_FUNC_FOO(salary, bonus, passive_incomes, inverted=True)

SQL:

1/CUSTOM_FUNC_FOO(salary, bonus, passive_incomes)

5️⃣ NULL and Set Operations

city = col("city")
region = col("region")

cond = city.is_null + region.isin(["North", "South"])

SQL:

(city IS NULL OR region IN ('North', 'South'))

🧪 Advanced Usage

Check the provided examples:

python simple_examples.py
python complex_examples.py

These demonstrate arithmetic, chaining, null logic, function use, and condition parsing.


📚 Documentation

Comprehensive documentation is available, built with Sphinx:

Building the Documentation

To build the documentation locally:

# Install documentation dependencies
pip install sphinx sphinx-rtd-theme sphinx-autodoc-typehints

# Build HTML documentation
cd docs
make html

# Open docs/build/html/index.html in your browser

Documentation Contents

  • Quick Start Guide: Get up and running quickly
  • User Guide: Detailed guides on expressions, conditions, functions, and parsing
  • API Reference: Complete API documentation for all modules
  • Examples: Comprehensive examples for various use cases
  • Contributing Guide: How to contribute to the project

The documentation includes:

  • Detailed explanations of all features
  • Code examples with expected output
  • Best practices and common patterns
  • Integration examples with popular databases

FAQ

Why doesn't expressql include full query builders?
expressql focuses specifically on expressions and conditions - the building blocks of SQL queries. For complete query building:

  • Use recordsql for DML operations (SELECT, INSERT, UPDATE, DELETE)
  • Use tablesqlite for DDL operations (CREATE TABLE, schema management)

This modular approach lets you use only what you need, or combine all three for a complete SQL solution.

Can you make the column name validation more permissive?
In most cases, strict column validation prevents SQL injection or typos. However, I have a version that does a simpler check and allows passing forgiven characters. If it proves relevant, I will probably update it.

Every condition string comes wrapped in brackets, is there any way to avoid it? The conditions wrap themselves in brackets to pass it to other functions that might be calling it. Avoiding this could be implemented by setting a check '_first = True' into the functions, but it's just one extra pair of parenthesis on the final expression

🔥 Tip
If you're using this in a larger query builder or ORM, let me know —
I might have an expressql-querybuilder in the works 👀.


Contributing

Contributions are welcome!
If you have suggestions for improvements, new features, or find any bugs, feel free to open an issue or submit a pull request.
I'm especially interested in ideas for better query builders and integrations with ORMs.

Roadmap

  • 🌌 More built-in SQL functions (expressql.functions)
  • 🌌 Chain-aware logical optimizations
  • 🌌 Better error tracing and SQL preview options
  • 🌌 Performance optimizations for complex expression trees

License

MIT License — free for personal and commercial use.

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

expressql-1.0.1.tar.gz (52.9 kB view details)

Uploaded Source

Built Distribution

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

expressql-1.0.1-py3-none-any.whl (45.1 kB view details)

Uploaded Python 3

File details

Details for the file expressql-1.0.1.tar.gz.

File metadata

  • Download URL: expressql-1.0.1.tar.gz
  • Upload date:
  • Size: 52.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for expressql-1.0.1.tar.gz
Algorithm Hash digest
SHA256 1bf085b643226f54ed59d5dd046b79d553f2955be49c58f9ad2352478458c111
MD5 59690d567080667a922554dac6c418e1
BLAKE2b-256 14eabb699ba3d1b9398bce5aae9ea2a151a20f519ff5b6458fbf99e0599011b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for expressql-1.0.1.tar.gz:

Publisher: python_publish.yml on Grayjou/expressql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file expressql-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: expressql-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 45.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for expressql-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 94227173109eca3bccb652b50a9d2a0a7077b0b91407aa9565ab5ceeea0e7eed
MD5 bb6d0bc77c1fd83ab3126658c6a847e7
BLAKE2b-256 9125db7e7268ef9a8fe7831efae94f4d921ee61a821c6cf402fc590272890312

See more details on using hashes here.

Provenance

The following attestation bundles were made for expressql-1.0.1-py3-none-any.whl:

Publisher: python_publish.yml on Grayjou/expressql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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