Lightweight query access-pattern declaration for ORMs
Project description
query-patterns
Declare query-access patterns in code and verify matching DB indexes. Supports SQLAlchemy and Django, both schema-based and database introspection modes. SQLModel is also supported, as it is built on top of SQLAlchemy.
Motivation
As projects grow, the number and variety of database queries increase. Over time, it becomes difficult to maintain a consistent set of query-access patterns across the codebase, and even harder to verify whether each pattern is backed by an appropriate database index. Relying on manual checks or memory often leads to:
- Missing or outdated indexes that cause silent performance regressions
- Inconsistent query patterns across teams or modules
- Schema changes that unintentionally break previously optimized queries
- Performance issues that surface only in production traffic
query-patterns addresses these problems by allowing you to declare expected query patterns in code and validate them against either your ORM schema or a running database instance — all via a simple CLI command.
What it does
- Collects all @query_pattern declarations from your Python modules
- Extracts index definitions from:
- SQLAlchemy (including SQLModel)
- ORM schema (MetaData)
- Actual DB (Inspector)
- Django
- ORM schema (Model._meta.indexes)
- Actual DB (connection.introspection)
- SQLAlchemy (including SQLModel)
- Compares (table, columns) tuples
- Can be integrated into CI to enforce index coverage
Example output
Install
pip install query-patterns
Declare a pattern
from query_patterns import query_pattern
# Declare query pattern using table/column names
class RepoA:
@query_pattern(table="users", columns=["email"])
def find(self, email): ...
# Declare query pattern using ORM models
# (works with SQLAlchemy, SQLModel, and Django models)
from models import User
class RepoB:
@query_pattern(table=User, columns=[User.email])
def find(self, email): ...
a. SQLAlchemy Command
# Reads declared indexes from SQLAlchemy MetaData
query-patterns sqlalchemy \
--metadata myapp.db.metadata
# collects query patterns from the specified module
query-patterns sqlalchemy \
--metadata myapp.db.metadata \
--module myapp.repo
# Reads actual indexes from the database
query-patterns sqlalchemy \
--source db \
--engine-url postgresql://user:pass@localhost/mydb
b. Django Command
# Reads Model._meta.indexes from installed apps
query-patterns django \
--settings config.settings
# collects query patterns from the specified module
query-patterns django \
--settings config.settings \
--module myapp.repo
# Reads actual DB indexes using Django introspection
query-patterns django \
--source db \
--settings config.settings
c. SQLModel Command
# Reads declared indexes from SQLModel MetaData
query-patterns sqlmodel \
--metadata myapp.db.metadata
# collects query patterns from the specified module
query-patterns sqlmodel \
--metadata myapp.db.metadata \
--module myapp.repo
# Reads actual indexes from the database
query-patterns sqlmodel \
--source db \
--engine-url postgresql://user:pass@localhost/mydb
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file query_patterns-0.1.12.tar.gz.
File metadata
- Download URL: query_patterns-0.1.12.tar.gz
- Upload date:
- Size: 11.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
971a3223ef75727aea3fcd390974cad1f70fd089be3d55c4e67c74c7ea09947b
|
|
| MD5 |
760fdfd07faf7a23c6172c0f88ef648b
|
|
| BLAKE2b-256 |
0dc8fa4cf81a1a01abc4dfddac84ef0fc58e574286afc574b7506fe2cc1fd716
|
File details
Details for the file query_patterns-0.1.12-py3-none-any.whl.
File metadata
- Download URL: query_patterns-0.1.12-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc484d3de1bfb12fee7c24c6b5df23a592a61cce2889d3560ab6857e68f4b198
|
|
| MD5 |
b30faae93301be9f0ada50363795e31f
|
|
| BLAKE2b-256 |
063dec9c30288515ef1184990a8ba75940a786200c11d89a20bf3ce623b7089e
|