Fixes: 1) Correct entrypoint scripts by removing redundant `python` reference in `uv run` commands; 2) Resolve incorrect imports and adjust class renaming in vibes_auth tests; 3) Address typing errors and minor omissions in existing code. Extra: 1) Improve formatting in settings and middleware files; 2) Update messaging test class names for clarity; 3) Cleanup unused imports and extra whitespaces, ensuring cleaner codebase.
40 lines
922 B
Python
40 lines
922 B
Python
from enum import Enum
|
|
from importlib import import_module
|
|
from typing import Any
|
|
|
|
|
|
def create_object(module_name: str, class_name: str, *args: list[Any], **kwargs: dict[Any, Any]) -> Any:
|
|
module = import_module(module_name)
|
|
|
|
cls = getattr(module, class_name)
|
|
|
|
return cls(*args, **kwargs)
|
|
|
|
|
|
class LoggingError(Exception):
|
|
pass
|
|
|
|
|
|
class LogLevel(Enum):
|
|
DEBUG = "debug"
|
|
INFO = "info"
|
|
WARNING = "warning"
|
|
ERROR = "error"
|
|
CRITICAL = "critical"
|
|
TRACE = "trace"
|
|
|
|
|
|
class RatelimitedError(Exception):
|
|
default_detail = "Rate limit exceeded. Please try again later."
|
|
default_code = "rate_limited"
|
|
status_code = 429
|
|
|
|
def __init__(self, detail=None, code=None):
|
|
if detail is None:
|
|
detail = self.default_detail
|
|
if code is None:
|
|
code = self.default_code
|
|
|
|
self.detail = detail
|
|
self.code = code
|
|
super().__init__(detail)
|