Skip to main content

No project description provided

Project description

promulgate

Simple single threaded event library. Inspired by this[https://stackoverflow.com/a/2022629] stackoverflow answer.

Example

from dataclasses import dataclass
from promulgate import Promulgation

@dataclass
class RegisterUserPromulgation(Promulgation)
    email: str
    password: str


def handle_register_user(prmlg : RegisterUserPromulgation) -> None:
    print(f"New user with email {prmlg.email} and password ***")


RegisterUserPromulgation.subscribe(handle_register_user)

event = RegisterUserPromulgation("test@test.com", "super.1.secret!")
event.promulgate()

# New user with email test@test.com and password *** 

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

promulgate-0.1.1.tar.gz (1.4 kB view hashes)

Uploaded Source

Built Distribution

promulgate-0.1.1-py3-none-any.whl (1.8 kB view hashes)

Uploaded Python 3

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