This repository is meant to be a reference of many useful patterns when one implements projects using the Clean Architecture or Domain-Driven Design.
It also happens to be an example project for my book under the same title.
EN Implementing the Clean Architecture @ Leanpub
PL (also printed!) Implementowanie Czystej Architektury w Pythonie
- Diagrams (coming soon)
- Big Picture Event Storming
- Context Map
- C4
- Tactical Patterns (coming soon)
- Components Integration Patterns (coming soon)
- Using with popular tools (more coming soon)
Coming soon
Coming soon
- Assemble components to configure IoC Container (main)
- Nesting Injector's modules - nested and component-level one that's included in top-level's assemble
e.g. Process Manager directly calls Customer Relationship Facade
- Event Bus (mediator) interface
- Injector-based Event Bus
- Handling of synchronous listeners
- Handling of asynchronous listeners
- One component defines an Event and publishes it
- Another component subscribes to it using DI
- Another component handles the Event
- Process Manager itself (multilistener with keeping state)
- Subscriptions to Events using DI
- Handling Events using singledispatchmethod
- Creating instance as usual after building IoC Container, then setting it on an attribute
- Custom integration of Celery and Injector (coming soon)