Punq resolver
Step 1: Install bazario with punq provider
pip install 'bazario[punq]'
Step 2: Setup bazario components(handlers, behaviors, etc) and container
# bootstap/ioc.py
from bazario import Dispatcher, Resolver
from bazario.resolvers.punq import PunqResolver
from punq import Container
def provide_registry() -> Registry:
registry = Registry()
registry.add_request_handler(CreateUserRequest, CreateUserHandler)
registry.add_notification_handlers(UserCreatedNotification, UserCreatedHandler)
return registry
def provide_container() -> Container:
container = Container()
container.register(Dispatcher)
container.register(Sender, Dispatcher)
container.register(Publisher, Dispatcher)
container.register(Resolver, PunqResolver)
container.register(Registry, provide_registry)
container.register(CreateUserHandler)
container.register(UserCreatedHandler)
return container
Step 3: Use bazario with punq
# presentation/rest/users.py
from your_framework import post, inject
from bazario import Sender, Publisher
from application.requests.create_user import CreateUserRequest
from application.notifications.user_created import UserCreatedNotification
@post("/")
@inject
def create_user(sender: Sender, publisher: Publisher) -> None:
response = sender.send(CreateUserRequest("john_doe"))
print(response) # Output: User john_doe created!
publisher.publish(UserCreatedNotification("123")) # Output: Notification: User 123 was created.