An extensible command bus for Python 3
Project description
Tacty
An extensible command bus for Python 3 inspired by the Tactician Project.
Introduction
A command bus is a software component that performs operations in which the data and the execution steps are decoupled. The data for the operation is contained in a Command object and the execution steps are contained in a Handler. The responsibility of the command bus is matching a Command with its Handler and execute it.
Tacty is a library that provides a command bus implementation that is extensbile and easy to use.
Basic Usage
# A Command class containing the required data for the operation is defined.
class PrintNumberCommand:
def __init__(self, number):
self.number = number
# A Handler class that receives an instance of the command and contains the execution steps is defined.
class PrintNumberHandler(Handler):
def handle(self, command: PrintNumberCommand):
print(command.number)
# An instance of the Command is passed to the command bus for its execution.
command = PrintNumberCommand(300)
command_bus.handle(command)
Initialization
# A Resolver is a class that given a Command returns its Handler. The InMemoryResolver receives pairs of Command and Handlers keeping them connected in memory.
resolver = InMemoryResolver()
resolver.add_handler(PrintNumberCommand, PrintNumberHandler())
# The CommandHandlerMiddleware uses a resolver to match a Command with its Handler and executes it.
command_handler_middleware = CommandHandlerMiddleware(resolver)
# The CommandBus receives a list of middlewares that are executed when processing a Command. In order to fulfill its minimum functionality (executing a Handler given a Command) an instance of the CommandHandlerMiddleware must be passed as the last element.
command_bus = CommandBus([command_handler_middleware])
Examples
Find next some examples using Tacty:
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tacty-1.1.0.tar.gz.
File metadata
- Download URL: tacty-1.1.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
064ba0daeb3b43f2aaad4bd5cac64b8095ec72f9a44774e62124184444f9c2f7
|
|
| MD5 |
463f77f84da133a1a10b71f71390e673
|
|
| BLAKE2b-256 |
ea0e06490d4439d240e7e446d054727fa261d507c26e0f832c219652dc28ccfe
|
File details
Details for the file tacty-1.1.0-py3-none-any.whl.
File metadata
- Download URL: tacty-1.1.0-py3-none-any.whl
- Upload date:
- Size: 18.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3a809b8ef1f9bc26c8d8421ec1cf0497a6c52bd710684ff226be6510e8f1011
|
|
| MD5 |
7c723900696d160a4e301e51cd9eea7c
|
|
| BLAKE2b-256 |
41e429b2b0c0b25d8f8dab92d3cbeb433842dae6f5defdd14e34db11b624d813
|