Skip to main content

Automatic Creation of ORM Models from Python Dataclasses.

Project description

Welcome to ORMatic

ORMatic is a python package that automatically converts python dataclasses to sqlalchemy tables. This is done using the declarative mapping. The package outputs a file that can be used as an SQLAlchemy interface.

When designing the dataclasses that should be mapped there are a couple of rules that need to be followed:

  • Fields that are not mapped start with an _ (underscore).
  • The only allowed union is the Optional[_T] union. Whenever you want a union of other types, use common superclasses as type instead.
  • Iterables are never optional and never nested. If you want an optional iterable, use an empty iterable as default factory instead.
  • Superclasses that are not the first mentioned superclass are not queryable via abstract queries. (Polymorphic identity)

If your dataclasses are not compatible with this pattern, there are two workarounds, the Alternative Mapping and the Type Decorator.

Features:

  • Automatic conversion of dataclasses to sqlalchemy tables.

  • Automatic application of relationships.

  • Automatic generation of ORM interface.

  • ORM interface never affects your existing code.

  • Support for inheritance.

  • Support for optional fields.

  • Support for nested dataclasses.

  • Support for many-many relationships.

  • Support for self-referencing relationships.

Example

The most common use case is to create an ORM for an existing set of dataclasses. An example for such a set of dataclasses is found in example.py. The automatically generated ORM interface is found in sqlalchemy_interface.py. Example usage of the ORM interface is found in integration.py.

The following script generates the bindings in sqlalchemy_interface.py.

from enum import Enum
import test.classes.example_classes
from ormatic.ormatic import ORMatic
from ormatic.dao import AlternativeMapping
from ormatic.utils import recursive_subclasses, classes_of_module
from dataclasses import is_dataclass


def main():
    
    # get classes that should be mapped
    classes = set(recursive_subclasses(AlternativeMapping))
    classes |= set(classes_of_module(test.classes.example_classes))
    
    # remove classes that should not be mapped
    classes -= set(recursive_subclasses(Enum))
    classes -= set([cls for cls in classes if not is_dataclass(cls)])
    
    ormatic = ORMatic(classes)
    ormatic.make_all_tables()

    with open('orm_interface.py', 'w') as f:
        ormatic.to_sqlalchemy_file(f)

        
if __name__ == '__main__':
    main()

TODO List

  • Nothing

Using Entity Query Language with ORMatic (EQL → SQLAlchemy)

You can express queries using the entity_query_language library and translate them into SQLAlchemy statements with ormatic.

Example using the sample classes from test/classes and the generated SQLAlchemy interface:

from sqlalchemy import create_engine
from sqlalchemy.orm import Session, configure_mappers

from entity_query_language.entity import let
from entity_query_language.symbolic import Or, in_

from classes.example_classes import Position
from classes.sqlalchemy_interface import Base, PositionDAO

from ormatic.eql_interface import eql_to_sql

# Initialize in-memory DB
configure_mappers()
engine = create_engine('sqlite:///:memory:')
session = Session(engine)
Base.metadata.create_all(engine)

# Insert sample data
session.add_all([
    PositionDAO.to_dao(Position(1, 2, 3)),
    PositionDAO.to_dao(Position(1, 2, 4)),
    PositionDAO.to_dao(Position(2, 9, 10)),
])
session.commit()

# Build an EQL expression
position = let(type_=Position, domain=[Position(0, 0, 0)])  # domain content is irrelevant for translation
expr = position.z > 3  # simple comparator

# Translate to SQLAlchemy and execute
stmt = eql_to_sql(expr)
rows = session.scalars(stmt).all()  # → PositionDAO rows with z > 3

# More complex logic
expr2 = Or(position.z == 4, position.x == 2)
stmt2 = eql_to_sql(expr2)
rows2 = session.scalars(stmt2).all()  # rows where z == 4 OR x == 2

# Using "in" operator
expr3 = in_(position.x, [1, 7])
stmt3 = eql_to_sql(expr3)
rows3 = session.scalars(stmt3).all()  # rows where x ∈ {1, 7}

Notes:

  • The translator maps EQL Variables to the corresponding DAO classes (via ormatic.dao.get_dao_class) and produces a SQLAlchemy select(...) with a WHERE clause.
  • It currently focuses on direct attribute comparisons on a single table and supports ==, !=, >, >=, <, <=, and in, as well as logical AND/OR.

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

ormatic-1.1.15.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.

ormatic-1.1.15-py3-none-any.whl (24.5 kB view details)

Uploaded Python 3

File details

Details for the file ormatic-1.1.15.tar.gz.

File metadata

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

File hashes

Hashes for ormatic-1.1.15.tar.gz
Algorithm Hash digest
SHA256 88da4d9507d716596fb0c7a1b287585b26847684f0c3a0cfe6811a01fd9431da
MD5 597353e2db89d10d6ca1b76fdcfea0fc
BLAKE2b-256 3d4742ba44cac40b7e31237e5e4763b07643f7f4a4a30d136b975ddd3dfef0af

See more details on using hashes here.

Provenance

The following attestation bundles were made for ormatic-1.1.15.tar.gz:

Publisher: publish-to-pypi.yml on tomsch420/ormatic

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

File details

Details for the file ormatic-1.1.15-py3-none-any.whl.

File metadata

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

File hashes

Hashes for ormatic-1.1.15-py3-none-any.whl
Algorithm Hash digest
SHA256 d0258c31e3752501a00f61d0fe8c96bd20b2a929f8e06ecb6cba68f4816ad427
MD5 406eeb81ead1c962dcd0d4c7e61e9067
BLAKE2b-256 f9788e9f9d70ab1c8878fb34918915280fa41f576d569352b85c69befcd48253

See more details on using hashes here.

Provenance

The following attestation bundles were made for ormatic-1.1.15-py3-none-any.whl:

Publisher: publish-to-pypi.yml on tomsch420/ormatic

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