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.4.tar.gz (19.9 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.4-py3-none-any.whl (39.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ddd_python-0.7.4.tar.gz
  • Upload date:
  • Size: 19.9 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.4.tar.gz
Algorithm Hash digest
SHA256 7f6bf971d89b3455958297f670e37ae1e342cf1752c3499f900a9d26f8c7627e
MD5 3e7705614a1add692d87c1a7e42c4ed2
BLAKE2b-256 6855934814c52222cb0504b01f1247c35f8a4e819f7727eebd24ba629f72b2f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ddd_python-0.7.4-py3-none-any.whl
  • Upload date:
  • Size: 39.3 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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 2d6eeb071f2f04d5532da3ae126864a097f2d83ad8f8d8dbdab61c01c4d1700d
MD5 736ae18b8ddee1db950582cf796727f8
BLAKE2b-256 ad7e88b263c4af9eda64be9487d41c3572259ad006c666f32ccd156eb8cbc0b9

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