Skip to content

src/dazzle_back/runtime/rate_limit.py

Generated: 2026-03-30T04:38:47.889236+00:00

Commit: 615f1354a103

Language: python

Scope: dazzle_back

Purpose

Rate limiting for Dazzle Backend applications.

Provides configurable rate limiting based on security profile using slowapi.

Usage in route modules::

import dazzle_back.runtime.rate_limit as _rl

@router.post("/login")
@_rl.limits.limiter.limit(_rl.limits.auth_limit)
async def logi...

Key Exports

  • _NoOpLimiter
  • _Limits
  • RateLimitConfig
  • configure_rate_limits_for_profile
  • apply_rate_limiting
  • limit
  • decorator

Dependencies

Imports

  • __future__.annotations
  • logging
  • dataclasses.dataclass
  • dataclasses.field
  • typing.TYPE_CHECKING
  • typing.Any
  • fastapi.FastAPI
  • slowapi.Limiter
  • slowapi._rate_limit_exceeded_handler
  • slowapi.errors.RateLimitExceeded
  • slowapi.util.get_remote_address

Event Interactions

None detected.

Invariants and Assumptions

No invariants documented.

Tests

  • tests/integration/test_runtime_e2e.py
  • tests/integration/test_runtime_pipeline.py
  • tests/unit/test_runtime_test_routes.py
  • tests/unit/test_runtime_services.py
  • tests/unit/test_runtime_mcp_tools.py

Notes

This page was automatically generated by tools/gen_reference_docs.py.