Skip to main content

Domain-Driven Design for Python

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

Coverage Status PyPI - License PyPI PyPI Mypy

pyddd

pyddd - это DDD (Domain-Driven Design) фреймворк для Python, предоставляющий встроенный менеджер зависимостей и шину сообщений. Он упрощает построение сложных доменных моделей и событийное программирование.

Возможности

  • Разделение доменов через Module
  • Использование команд и событий (DomainCommand, DomainEvent)
  • Корневые сущности (RootEntity) и управление идентификаторами (EntityId)
  • Встроенный менеджер зависимостей
  • Событийно-ориентированная архитектура

Быстрый старт

Определение доменной модели

class PetCreated(DomainEvent, domain='pet'):
    pet_id: str
    name: str


class Pet(RootEntity):
    def __init__(self, name: str):
        self.name = name

    @classmethod
    def create(cls, name: str):
        pet = cls(name)
        pet.register_event(PetCreated(name=name, pet_id=pet.__reference__))
        return pet

Репозитории и модуль

class IPetRepository(abc.ABC):
    @abc.abstractmethod
    def save(self, entity: RootEntity):
        ...

    @abc.abstractmethod
    def get(self, name: str) -> Pet:
        ...


class CreatePet(DomainCommand, domain='pet'):
    name: str


pet_module = Module('pet')


@pet_module.register
def create_pet(cmd: CreatePet, repository: IPetRepository):
    pet = Pet.create(cmd.name)
    repository.save(pet)
    return pet.__reference__

Запуск приложения

class InMemoryPetRepo(IPetRepository):
    def __init__(self):
        self.memory = {}

    def get(self, name: str) -> Pet:
        return self.memory.get(name)

    def save(self, entity: Pet):
        self.memory[entity.name] = entity


# Настройка приложения
app = Application()
app.run()
app.include(pet_module)
app.set_defaults('pet', repository=InMemoryPetRepo())
set_application(app)

# Использование
fluff_id = app.handle(CreatePet(name='Fluff'))
print(f'Создан питомец с ID: {fluff_id}')

Запуск интеграционных тестов:

# Поднимаем внешние сервисы
docker-compose up -d

# Запуск тестов
pytest tests

Лицензия

Этот проект распространяется под лицензией MIT. Подробности см. в файле LICENSE.

Контрибьюция

Мы приветствуем ваш вклад! Создавайте issue, присылайте pull request'ы и помогайте развивать pyddd.

Контакты

Если у вас есть вопросы или предложения, свяжитесь с нами через GitHub Issues.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ddd_python-0.7.7.tar.gz (20.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ddd_python-0.7.7-py3-none-any.whl (37.0 kB view details)

Uploaded Python 3

File details

Details for the file ddd_python-0.7.7.tar.gz.

File metadata

  • Download URL: ddd_python-0.7.7.tar.gz
  • Upload date:
  • Size: 20.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.11.4 Darwin/24.2.0

File hashes

Hashes for ddd_python-0.7.7.tar.gz
Algorithm Hash digest
SHA256 d778912b93d485b7f8d7772c5399b488ec327ca4f5d6131a940b33c365d692af
MD5 01e1c4187ae9d08fe3dfe1584ac3a15f
BLAKE2b-256 0897c384f068c0eccf089c420b2c7a9f73025a0615947aac5a5ab6e090753e21

See more details on using hashes here.

File details

Details for the file ddd_python-0.7.7-py3-none-any.whl.

File metadata

  • Download URL: ddd_python-0.7.7-py3-none-any.whl
  • Upload date:
  • Size: 37.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.11.4 Darwin/24.2.0

File hashes

Hashes for ddd_python-0.7.7-py3-none-any.whl
Algorithm Hash digest
SHA256 d74bbd92d534a4a7a0032ec6f3bf16f556fbd8443c175f89be29ac25e049531d
MD5 e8f73dbb78f2051cfd42af257f6a6502
BLAKE2b-256 cb91cafd25947b99cdce5d0ed109998792541584c23a3c086171b85f32c5bc4c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page