Skip to main content

domain-suite

Consolidated domain packages for Python services: typed errors, security context, API rate limiting, event monitoring, and cross-cutting aspects.

PyPI CI License Python versions

Overview

domain-suite brings together five complementary domain packages into a single distribution:

  • domain-errors: Typed domain error hierarchy with wrapping and chaining
  • domain-security: Security context management and authorization checks
  • domain-api-limiter: Request rate limiting and quota enforcement
  • domain-monitoring: Event monitoring and telemetry
  • domain-aspects: Composable decorators for logging, auth, throttling, error wrapping, and sensitivity masking

Each package maintains its namespace and API; the consolidation is organizational (single distribution, unified testing).

Installation

# Base install
uv add domain-suite

# With all optional extras (logging + sensitivity)
uv add "domain-suite[all]"

# Or select extras
uv add "domain-suite[logging]"    # for mixin-logging support
uv add "domain-suite[sensitivity]" # for mixin-sensitivity support

or with pip:

pip install domain-suite
pip install "domain-suite[all]"

Requires Python 3.11+.

Packages

domain-errors

Typed domain error hierarchy with wrapping and chaining for Python services.

Public API: DomainError, ErrorChain, WrapErrorsClient, wrap_errors, ChainLink, ChainVia, DomainClassifier, DomainCrossing.

Example:

from domain_errors import DomainError, wrap_errors

class DatabaseError(DomainError):
    domain = "database"
    code = "db_connection_failed"
    http_status = 503
    retryable = True

@wrap_errors(as_=DatabaseError)
def fetch_user(user_id: str):
    raise RuntimeError(f"Database connection failed for {user_id}")

try:
    fetch_user("usr_123")
except DatabaseError as e:
    print(f"Error domain: {e.domain}, code: {e.code}, http_status: {e.http_status}, retryable: {e.retryable}")

Output (Python 3.11+, domain-suite==0.2.0):

Error domain: database, code: db_connection_failed, http_status: 503, retryable: True

See docs/domain_errors/ for full documentation.

domain-security

Security context management and authorization checks.

Public API: SecurityContext, SecurityContextManager, Principal, requires, tenant_scoped, Authorizer, Permission, PolicyDecision, SecretRef, SecretValue, security error classes.

Example:

from domain_security import Principal, SecurityContext, SecurityContextManager, requires

# Create principal with required scope
principal = Principal(id="usr_123", scopes=frozenset(["admin.read"]))
ctx = SecurityContext(principal=principal, tenant_id="org_abc")

# Bind context for a request scope
manager = SecurityContextManager()
with manager.bind(principal=principal, tenant_id="org_abc"):
    # Enforce authorization via decorator
    @requires(permission="admin.read")
    def admin_only_function():
        return "Admin access granted"
    
    result = admin_only_function()
    print(result)

Output (Python 3.11+, domain-suite==0.2.0):

Admin access granted

See docs/domain_security/ for full documentation.

domain-api-limiter

Request rate limiting and quota enforcement.

Public API: throttled, PolicyRegistry, RateLimit, ThrottlePolicy, TierRate, Period, RateLimitExceeded, throttle error classes.

Example:

from domain_api_limiter import throttled

@throttled(scope="api.documents", rate="100/hour")
def create_document(title: str):
    return {"id": "doc_123", "title": title}

result = create_document("My Document")
print(result)

Output (Python 3.11+, domain-suite==0.2.0):

{'id': 'doc_123', 'title': 'My Document'}

See docs/domain_api_limiter/ for full documentation.

domain-monitoring

Event monitoring and telemetry.

Public API: monitored, MonitorRegistry, MetricSink, MetricEvent, Outcome, CollectingSink, NullSink, monitoring error classes.

Example:

from domain_monitoring import monitored

@monitored(event="document.processed")
def process_document(doc_id: str):
    return {"status": "success"}

result = process_document("doc_123")
print(result)

Output (Python 3.11+, domain-suite==0.2.0):

{'status': 'success'}

See docs/domain_monitoring/ for full documentation.

domain-aspects

Composable decorators for logging, auth, throttling, error wrapping, and sensitivity masking.

Public API: aspects, Logged, Requires, Throttled, TenantScoped, WrapErrors, Sensitive, AspectEntry, AspectKind, aspect error classes.

Example:

from domain_aspects import aspects, Logged, Throttled
from domain_security import Principal, SecurityContextManager
from mixin_logging import LoggingMixin

class DocumentService(LoggingMixin):
    @aspects(
        Logged(event="document.create"),
        Throttled(scope="api.documents", rate="100/hour"),
    )
    def create_document(self, title: str, content: str) -> dict:
        return {"id": "doc_123", "title": title}

principal = Principal(id="usr_123")
manager = SecurityContextManager()
with manager.bind(principal=principal, tenant_id="org_abc"):
    service = DocumentService()
    result = service.create_document("My Doc", "Content here")
    print(result)

Output (Python 3.11+, domain-suite==0.2.0):

{'id': 'doc_123', 'title': 'My Doc'}

See docs/domain_aspects/ for full documentation.

Consolidated From

This distribution consolidates five independent domain packages (originally domain-errors, domain-security, domain-api-limiter, domain-monitoring, and domain-aspects) into a single unified distribution to simplify dependency management and testing.

Each package retains its original public API and namespace. Internal dependencies between packages within the suite are resolved locally (no external package re-imports required).

Optional Extras

  • [logging]: Integrates with mixin-logging>=0.6.0 for structured event logging adapters.
  • [sensitivity]: Integrates with mixin-sensitivity>=0.4.0 for automatic PII/PHI field masking.
  • [all]: Includes both mixin-logging and mixin-sensitivity.

Future versions may introduce new extras or migrate integrations (e.g., mixin-suite packages if they consolidate similarly).

Development

Install development dependencies:

uv sync --all-extras

Run tests:

uv run pytest

Run linting and type checking:

ruff check .
ruff format --check .
mypy

License

Apache License 2.0. See LICENSE for details.

Contributing

See CONTRIBUTING.md for guidelines.

Download files

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

Source Distribution

domain_suite-0.5.0.tar.gz (290.2 kB view details)

Uploaded Source

Built Distribution

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

domain_suite-0.5.0-py3-none-any.whl (76.3 kB view details)

Uploaded Python 3

File details

Details for the file domain_suite-0.5.0.tar.gz.

File metadata

  • Download URL: domain_suite-0.5.0.tar.gz
  • Upload date:
  • Size: 290.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for domain_suite-0.5.0.tar.gz
Algorithm Hash digest
SHA256 bcc8eee547155ce0d7154f3621e55e09c1be742649bab1d95ae51425677dabea
MD5 6ee3f55d5e7f2b9af4dea6ee83bb763d
BLAKE2b-256 9485fa66b697cb09174e87ec0da085c9be3c8d600dfcaf19a4b992737c4258f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for domain_suite-0.5.0.tar.gz:

Publisher: publish.yml on jekhator/domain-suite

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file domain_suite-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: domain_suite-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 76.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for domain_suite-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 800a2b564f6ede2c9a8e4a671b777d1b0dddf4d0d0cc61b03f5044d902fdb0b0
MD5 4525fd98e6a59b528ced0dd5f9c60467
BLAKE2b-256 bfec58794641b73fcf8de82289b344c4fc4ed95fe984a303a0f83d2022b1850f

See more details on using hashes here.

Provenance

The following attestation bundles were made for domain_suite-0.5.0-py3-none-any.whl:

Publisher: publish.yml on jekhator/domain-suite

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.5.0 This release

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page