Skip to main content

Command-Query Responsibility Separation (CQRS) framework

Project description

# vim: syntax=rst

Python 3 CQRS Framework

Synopsis

Installation

Basic usage

import cqrs


class MakePizzaCommand(cqrs.Command):

    #: Specifies the type of pizza we want.
    pizza_type = cqrs.CharField(
        choices=['margarita','tonno','calzone']
    )

    #: A boolean indicating if the pizza needs extra cheese.
    extra_cheese = cqrs.BooleanField(
        default=False
    )
handler.handle(command)

Advanced usage

This section describes the usage of the cqrs module in the context of a distributed system. Sovereign, the reference implementation of the TNG Enterprise Management System, is the assumed environment.

from neural import Neural
import stomp
import cqrs

neural = Neural(stomp.transport_factory())


command = MakePizzaCommand(pizza_type='tonno')
neural.send_command(command)

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

cqrs-1.0.1.tar.gz (7.4 kB view hashes)

Uploaded Source

Supported by

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