Helper for add transitions functionality in sqlalchemy
Project description
sqlalchemy-state-machine
sqlalchemy-state-machine is a helper for add transitions functionality in sqlalchemy.
Installation
sqlalchemy-state-machine is available on PyPI. Use pip to install:
$ pip install sqlalchemy-state-machine
Basic Usage
import sqlalchemy as sa
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy_state_machine import StateConfig, StateMixin
Base = declarative_base()
NEW = "new"
SENT = "sent"
FAILED = "failed"
class Event(Base, StateMixin):
__tablename__ = "users"
state_config = StateConfig(
initial=NEW,
states=[NEW, SENT, FAILED],
transitions=[
["set_sent", NEW, SENT],
["set_failed", NEW, FAILED],
],
)
id = sa.Column(sa.Integer, primary_key=True)
name = sa.Column(sa.String)
status = sa.Column(sa.String(), nullable=False, index=True)
sa.event.listen(Event, "init", Event.init_state_machine)
sa.event.listen(Event, "load", Event.init_state_machine)
event = Event(name="Event1")
assert event.status == NEW
assert event.set_sent()
assert event.status == SENT
License
sqlalchemy-state-machine is developed and distributed under the Apache 2.0 license.
Reporting a Security Vulnerability
See our security policy.
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
Close
Hashes for sqlalchemy-state-machine-1.5.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fdccf145a206b8ee34c871ff280af04bbfafb62dc4b1a2df8deda896ec7bfe4 |
|
MD5 | 2416ef770960637d0a82265e2939acde |
|
BLAKE2b-256 | 2d4832562eaec75ce7d9cd40e98921931858dd84dd50e718b01fd08f0e6add3d |
Close
Hashes for sqlalchemy_state_machine-1.5.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb98b2717c17169cb8f156c3089066613c1aacfab0114b951d11b4b4208f165e |
|
MD5 | bd3fd8b2c2fe68e095ccddbcb7e00d58 |
|
BLAKE2b-256 | 201af8fb3d9710f99e465785f23f9b13647cfac7ac9fc186ed685196932ed413 |