Python package for eventsourcing with SQLAlchemy.
Project description
Event Sourcing in Python with SQLAlchemy
This package supports using the Python eventsourcing library with SQLAlchemy.
To use SQLAlchemy with your Python eventsourcing applications:
- install the Python package
eventsourcing_sqlalchemy
- set the environment variable
PERSISTENCE_MODULE
to'eventsourcing_sqlalchemy'
- set the environment variable
SQLALCHEMY_URL
to an SQLAlchemy database URL
See below for more information.
Installation
Use pip to install the stable distribution from the Python Package Index. Please note, it is recommended to install Python packages into a Python virtual environment.
$ pip install eventsourcing_sqlalchemy
Getting started
Define aggregates and applications in the usual way.
from eventsourcing.application import Application
from eventsourcing.domain import Aggregate, event
from uuid import uuid5, NAMESPACE_URL
class TrainingSchool(Application):
def register(self, name):
dog = Dog(name)
self.save(dog)
def add_trick(self, name, trick):
dog = self.repository.get(Dog.create_id(name))
dog.add_trick(trick)
self.save(dog)
def get_tricks(self, name):
dog = self.repository.get(Dog.create_id(name))
return dog.tricks
class Dog(Aggregate):
@event('Registered')
def __init__(self, name):
self.name = name
self.tricks = []
@staticmethod
def create_id(name):
return uuid5(NAMESPACE_URL, f'/dogs/{name}')
@event('TrickAdded')
def add_trick(self, trick):
self.tricks.append(trick)
To use this module as the persistence module for your application, set the environment
variable PERSISTENCE_MODULE
to 'eventsourcing_sqlalchemy'
.
When using this module, you need to set the environment variable SQLALCHEMY_URL
to an
SQLAlchemy database URL for your database.
Please refer to the SQLAlchemy documentation
for more information about SQLAlchemy Database URLs.
import os
os.environ["PERSISTENCE_MODULE"] = "eventsourcing_sqlalchemy"
os.environ["SQLALCHEMY_URL"] = "sqlite:///:memory:"
Construct and use the application in the usual way.
school = TrainingSchool()
school.register('Fido')
school.add_trick('Fido', 'roll over')
school.add_trick('Fido', 'play dead')
tricks = school.get_tricks('Fido')
assert tricks == ['roll over', 'play dead']
See the library's documentation and the SQLAlchemy project for more information.
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 eventsourcing-sqlalchemy-0.2.0.tar.gz
.
File metadata
- Download URL: eventsourcing-sqlalchemy-0.2.0.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.10.1 Darwin/19.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2341af7bba2b564162b85b2dc841e29b97eaf8347bbf62f3feef9806b1b5f1a6 |
|
MD5 | e8b968b90fda00f55d74fff99250578e |
|
BLAKE2b-256 | f96299bb81bf4c585e11c4c2fd45803de0b1bf9126a41aff4409ef0df762e997 |
File details
Details for the file eventsourcing_sqlalchemy-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: eventsourcing_sqlalchemy-0.2.0-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.10.1 Darwin/19.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c241553d58bf16c77a876fd81ba476d0df46e229d1158b964b7a07d04dd0f832 |
|
MD5 | f0cc3609d2678bd297dd22ac8bf984c6 |
|
BLAKE2b-256 | 7e06b0fb03ecbda90ae35749b7fb337915a6ea61c58943faeb803a1477ebcca0 |