Base with a `model_id` property for SQLAlchemy models
Project description
SQLAlchemy-ModelID provides a base for SQLAlchemy models with a model_id
property. This conveniently distinguishes between models with the same primary key but from different tables.
Installation
$ pip install sqlalchemy-modelid
Quickstart
from sqlalchemy_modelid import ModelIdBase
# standard session creation
from sqlalchemy import create_engine, Column, Integer
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker, scoped_session
engine = create_engine('sqlite:///:memory:')
session_factory = sessionmaker(bind=engine)
Session = scoped_session(session_factory)
session = Session()
Base = declarative_base()
# subclass `ModelIdBase` to add a `model_id` property to any model
class Model(ModelIdBase, Base):
__tablename__ = 'model'
id = Column(Integer, primary_key=True)
# create the database
Base.metadata.create_all(engine)
# example
my_model = Model()
session.add(my_model)
session.commit()
my_model.model_id
Out:
model-1
Citation
@software{bowen2020sqlalchemy-modelid,
author = {Dillon Bowen},
title = {SQLAlchemy-ModelID},
url = {https://dsbowen.github.io/sqlalchemy-modelid/},
date = {2020-06-05},
}
License
Users must cite this package in any publications which use it.
It is licensed with the MIT License.
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
File details
Details for the file sqlalchemy-modelid-0.0.3.tar.gz
.
File metadata
- Download URL: sqlalchemy-modelid-0.0.3.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4f11aa323ef34b3a8a84e5f13e89dc84706b12a62c2d063bd5eb438c3c367ce |
|
MD5 | b02a15fbd64469edda770d7c3b536990 |
|
BLAKE2b-256 | 05ada076ece0f7b0eb612e52e99993094524617b1629118ff6c1a6d375b164ed |
File details
Details for the file sqlalchemy_modelid-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: sqlalchemy_modelid-0.0.3-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc21a9e5d8e716ace24c883775e2061f74ce900c6a8201de1ce4b2094028532f |
|
MD5 | 3e2d18fce29744592d8ab7fdfda455bf |
|
BLAKE2b-256 | 8b4cfb2da475c1c8954fecb1675d1f67658e8485567808a1f99df2a71fb16795 |