Async Python DDD utilities library.
Project description
Async Python DDD utilities library
aioddd is an async Python DDD utilities library.
Installation
Use the package manager pip to install aiocli.
pip install aioddd
Usage
from asyncio import get_event_loop
from dataclasses import dataclass
from typing import Type
from aioddd import NotFoundError, \
Command, CommandHandler, SimpleCommandBus, \
Query, QueryHandler, OptionalResponse, SimpleQueryBus, Event
_products = []
class ProductStored(Event):
@dataclass
class Attributes:
ref: str
attributes: Attributes
class StoreProductCommand(Command):
def __init__(self, ref: str):
self.ref = ref
class StoreProductCommandHandler(CommandHandler):
def subscribed_to(self) -> Type[Command]:
return StoreProductCommand
async def handle(self, command: StoreProductCommand) -> None:
_products.append(command.ref)
class ProductNotFoundError(NotFoundError):
_code = 'product_not_found'
_title = 'Product not found'
class FindProductQuery(Query):
def __init__(self, ref: str):
self.ref = ref
class FindProductQueryHandler(QueryHandler):
def subscribed_to(self) -> Type[Query]:
return FindProductQuery
async def handle(self, query: FindProductQuery) -> OptionalResponse:
if query.ref != '123':
raise ProductNotFoundError.create(detail={'ref': query.ref})
return {'ref': query.ref}
async def main() -> None:
commands_bus = SimpleCommandBus([StoreProductCommandHandler()])
await commands_bus.dispatch(StoreProductCommand('123'))
query_bus = SimpleQueryBus([FindProductQueryHandler()])
response = await query_bus.ask(FindProductQuery('123'))
print(response)
if __name__ == '__main__':
get_event_loop().run_until_complete(main())
Requirements
- Python >= 3.6
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
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
aioddd-1.2.5.tar.gz
(12.4 kB
view details)
Built Distribution
aioddd-1.2.5-py3-none-any.whl
(17.1 kB
view details)
File details
Details for the file aioddd-1.2.5.tar.gz
.
File metadata
- Download URL: aioddd-1.2.5.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.6.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d2d240f77f60a2799de1b3f9fe12cf1613a8ad825546931518fb92654414456 |
|
MD5 | 3fec56b3dcea613a6f7467ff5323a7ff |
|
BLAKE2b-256 | 3153534f96a86e04a8f127cc53236b9536ba510dd55b9ddedae6a7848dcd72d7 |
Provenance
File details
Details for the file aioddd-1.2.5-py3-none-any.whl
.
File metadata
- Download URL: aioddd-1.2.5-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.6.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9eaf764268bac5b88ae2bd9eca903e8df86ebcc1ac03afc9ea9798a7fbe7ece7 |
|
MD5 | 0e09f66903b9908b942f23dfa59d1316 |
|
BLAKE2b-256 | 53fc4c49d880c5488dcb301f8629564c5632a146363eddf99aabf1e16a59c0d5 |