Aggregates composition for domain driven design in Python
Project description
Pycider
Documentation is here. This code is a Python implementation of deciders based on the F# code from Jérémie Chassaing located here dddeu-2023-deciders. There was additionally a talk on this, to be found here.
Installation
You can use pip install pycider
or poetry add pycider
to install this project from PyPI.
Usage
You can create Process
or a Decider
. A simple example of this can be found under the test composition page.
Decider
Decider
is a simple state machine that seperates state changes and actions. Command
s are actions which when executed return Event
s representing the results from the actions. You can use Event
's to deterministically update the State
allowing replayability and easy serialization by only saving Event
's.
Command
s are turned intoEvent
's throughdecide()
calls.Event
's deterministically update theState
throughevolve()
calls.
Process
Process
is a simple state machine for managing a system. A system has several needs. The system given a State
should be able to resume to the next Command
, The system should be able to react to Event
changes and return Command
's for dealing with those changes. Finally the system should be able to update the State
deterministically given a Event
.
Event
's are turned intoCommand
s thrughreact()
calls.- Given a
State
, the system should be able toresume()
to the appropriateCommand
. Event
's deterministically update theState
throughevolve()
calls.
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 pycider-0.6.8.tar.gz
.
File metadata
- Download URL: pycider-0.6.8.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.8.0-47-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d52adca303110974663c2045a7e0d993cc9c23fbdd965a027c2e6846459aebb |
|
MD5 | 82c1252e1dee3695a0c272d2fc0a8145 |
|
BLAKE2b-256 | ae196d74ec8b6d6fd8921bebb8d8c4f77a84e92ac79261f2ffc4f0fa7893b0c4 |
Provenance
File details
Details for the file pycider-0.6.8-py3-none-any.whl
.
File metadata
- Download URL: pycider-0.6.8-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.8.0-47-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61f3a9cf57592846f840d34f1748dd1687b9b69029b719eb8e28aa962575620d |
|
MD5 | f2d19db7dd6ef79caf1471bbc1232c1f |
|
BLAKE2b-256 | 772d8ce350138498cba4d764805b331800cd5db473c195e62f554768c1a4ec0c |