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.6.tar.gz (17.4 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.6-py3-none-any.whl (37.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ddd_python-0.7.6.tar.gz
  • Upload date:
  • Size: 17.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.9.21 Linux/6.8.0-1021-azure

File hashes

Hashes for ddd_python-0.7.6.tar.gz
Algorithm Hash digest
SHA256 96d0f3362feb99eb475d7fe142cb15d9354acdfef13b45dc2df74dc31cdbb6a9
MD5 43683a450aeda7b29949c754f7de4666
BLAKE2b-256 bac390d998f91c86d8be13a1776f95dcb2a4dedc1b61ca4612a3ba3c477b8ec4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ddd_python-0.7.6-py3-none-any.whl
  • Upload date:
  • Size: 37.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.9.21 Linux/6.8.0-1021-azure

File hashes

Hashes for ddd_python-0.7.6-py3-none-any.whl
Algorithm Hash digest
SHA256 e6935d4ca9b4d8577559c384a832bb262ce71f512abfdfb89132292fd8ee61f5
MD5 b23cc728c8d203bfa8f78ddf40d03d8a
BLAKE2b-256 a26e50f290610a33bca199d50608d0d5df66f3dcb5ca21d8d3adebd228e9d947

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