Elegant service objects for Python.
A robust and flexible framework that facilitates composable business logic and ensures uniform error handling for various business logic actions. The fundamental concept revolves around the idea that a single action should perform a specific task, and these actions can be seamlessly organized into groups. Notably, these groups and actions can be intricately nested, forming complex Directed Acyclic Graphs (DAGs).
To enhance readability and maintainability, we leverage the concept of service objects to encapsulate intricate business logic in an easily understandable format. Establishing a normalized interface for all service calls not only streamlines the overall architecture but also enables the chaining of service calls. This consistent approach to handling errors across the entire framework ensures a standardized and predictable error-handling mechanism, contributing to the reliability of the system.
pip install unimog
import gzip
from dataclasses import dataclass
from unimog import Action, Context
@dataclass
class Input(Context):
text: str
@dataclass
class Output(Input):
compressed_text: str
class CompressText(Action):
def perform(self):
compressed_text = gzip.compress(self.input.text)
self.output.compressed_text = compressed_text
result = CompressText(Input, Output)(text="Hello, World!")
result.is_success # True
result.compressed_text # b'\x1f\x8b\x08\x00r\x92\xb7e…
import gzip
from dataclasses import dataclass
from unimog import Action, Context, Organizer
@dataclass
class MyContext(Context):
text: str = None
compressed_text: str = None
class CompressText(Action):
def perform(self):
compressed_text = gzip.compress(self.input.text)
self.output.compressed_text = compressed_text
class DecompressText(Action):
def perform(self):
text = gzip.decompress(self.input.compressed_text)
self.output.text = text
CompressAndDecompressText = Organizer(
CompressText(MyContext, MyContext),
DecompressText(MyContext, MyContext)
)
result = CompressAndDecompressText(text="Hello, World!")
result.is_success # True
result.text # "Hello, World!"
python -m pytest
Bump version number accordingly (semantic versioning).
poetry build
poetry publish