Hojo: An ORM built on top of SQL Alchemy
Project description
Hojo - An Opinionated ORM on Top of SQL Alchemy
Hojo is a library that simplifies the usage of SQL Alchemy, providing an interface that is familiar to Django users. While it is not an exact replication of the Django ORM API, it strives to be reminiscent of it, making it easier for Django developers to work with SQL Alchemy.
Please note that this library is currently in Alpha version and is not yet ready for production use.
Installation
You can install Hojo using pip:
pip install hojo
Basic Usage
Here's a basic example of how to use Hojo:
# file: models.py
from hojo import automap, model
@model
class Soldier:
name: str
weapon: str
level: int
# Create the mappers automatically
automap()
# file: query.py
# Insert the hero into the 'soldiers' table
hero = Soldier.objects.create(name='Cloud Strife', weapon='Buster Sword', level=50)
# Insert the antagonist into the 'soldiers' table
antagonist = Soldier.objects.create(name='Sephiroth', weapon='Masamune', level=99)
# Retrieve a Soldier with the name 'Cloud' from the 'soldiers' table
soldier = Soldier.objects.filter(name='Cloud Strife')
# Retrieve a Soldier filtering by the weapon
soldier = Soldier.objects.filter(weapon__startswith='Buster')
# Retrieve a list of Soldiers filtering by level greater than 10
soldiers = Soldier.objects.filter(level__gt=10)
Schema usage
Hojo provides a BaseSchema class, that you can use with attrs @define and get some abstractions over it:
from hojo import schema
from enum import StrEnum
class MateriaType(StrEnum):
MAGIC = 'magic'
SUPPORT = 'support'
SUMMON = 'summon'
COMMAND = 'command'
@schema
class Materia:
name: str
materia_type: MateriaType
ifrit = Materia.load({'name': 'Ifrit', 'materia_type': 'summon'})
print(ifrit) # => Materia(name='Ifrit', materia_type=<MateriaType.SUMMON: 'summon'>)
print(ifrit.dump()) # => {'name': 'Ifrit', 'materia_type': 'summon'}
print(ifrit.dump(only=['name'])) # => {'name': 'Ifrit'}
print(ifrit.dump(exclude=['name'])) # => {'materia_type': 'summon'}
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
Built Distribution
File details
Details for the file hojo-0.3.1.tar.gz
.
File metadata
- Download URL: hojo-0.3.1.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.9.13 Darwin/22.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85d16fd9858dde8e18231723e85182f1f8cfd2b7be3356758dbfdd05ea93a7d5 |
|
MD5 | 57b38dfd9292dbfa49e9e8356e877638 |
|
BLAKE2b-256 | a7e51fe1ee0a59f412347b525ffb7d7bc2446b34e56a9e26beced39bd6d05b21 |
File details
Details for the file hojo-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: hojo-0.3.1-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.9.13 Darwin/22.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9751285fcbd291336c1d059bbb4d3f7454d74685617da1cb3c2c20d5ad8bd291 |
|
MD5 | fa693a30596220c74748da776386907f |
|
BLAKE2b-256 | 1b2b166ee2782dd1c8e1370b55a8a2c088bb97827f3be9bc97da63c6586c4b50 |