.env.example
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
ROADMAP.md
SECURITY.md
SUPPORT.md
pyproject.toml
docs/architecture.md
docs/configuration.md
docs/deployment.md
docs/getting Starting.md
docs/installation.md
docs/migration-guide.md
docs/performance.md
docs/philosophy.md
docs/quickstart.md
docs/security.md
docs/api/application.md
docs/api/http.md
docs/api/jinax.md
docs/api/routing.md
docs/api/security.md
docs/api/tasks.md
docs/api/testing.md
docs/api/validation.md
docs/api/websocket.md
docs/examples/android-backend.md
docs/examples/basic-api.md
docs/examples/frontend-integration.md
docs/examples/jinax-website.md
docs/examples/large-application.md
docs/examples/react-backend.md
docs/examples/websocket-chat.md
docs/guides/authentication.md
docs/guides/authorization.md
docs/guides/databases.md
docs/guides/debugging.md
docs/guides/jinax.md
docs/guides/middleware.md
docs/guides/mobile-backends.md
docs/guides/plugins.md
docs/guides/requests.md
docs/guides/responses.md
docs/guides/routing.md
docs/guides/tasks.md
docs/guides/testing.md
docs/guides/validation.md
docs/guides/websockets.md
src/flaxon/__init__.py
src/flaxon/__main__.py
src/flaxon/constants.py
src/flaxon/exceptions.py
src/flaxon/protocols.py
src/flaxon/py.typed
src/flaxon/typing.py
src/flaxon/version.py
src/flaxon.egg-info/PKG-INFO
src/flaxon.egg-info/SOURCES.txt
src/flaxon.egg-info/dependency_links.txt
src/flaxon.egg-info/entry_points.txt
src/flaxon.egg-info/requires.txt
src/flaxon.egg-info/top_level.txt
src/flaxon/application/__init__.py
src/flaxon/application/app.py
src/flaxon/application/bootstrap.py
src/flaxon/application/configuration.py
src/flaxon/application/context.py
src/flaxon/application/environment.py
src/flaxon/application/lifecycle.py
src/flaxon/application/registry.py
src/flaxon/application/state.py
src/flaxon/asgi/__init__.py
src/flaxon/asgi/application.py
src/flaxon/asgi/http.py
src/flaxon/asgi/lifespan.py
src/flaxon/asgi/protocol.py
src/flaxon/asgi/utils.py
src/flaxon/asgi/websocket.py
src/flaxon/caching/__init__.py
src/flaxon/caching/cache.py
src/flaxon/caching/decorators.py
src/flaxon/caching/exceptions.py
src/flaxon/caching/key_builder.py
src/flaxon/caching/backends/__init__.py
src/flaxon/caching/backends/custom.py
src/flaxon/caching/backends/filesystem.py
src/flaxon/caching/backends/memory.py
src/flaxon/caching/backends/redis.py
src/flaxon/cli/__init__.py
src/flaxon/cli/base.py
src/flaxon/cli/console.py
src/flaxon/cli/discovery.py
src/flaxon/cli/generator.py
src/flaxon/cli/main.py
src/flaxon/cli/templates.py
src/flaxon/cli/commands/__init__.py
src/flaxon/cli/commands/build.py
src/flaxon/cli/commands/doctor.py
src/flaxon/cli/commands/generate.py
src/flaxon/cli/commands/inspect.py
src/flaxon/cli/commands/migrate.py
src/flaxon/cli/commands/new.py
src/flaxon/cli/commands/routes.py
src/flaxon/cli/commands/run.py
src/flaxon/cli/commands/schedule.py
src/flaxon/cli/commands/shell.py
src/flaxon/cli/commands/test.py
src/flaxon/cli/commands/version.py
src/flaxon/cli/commands/worker.py
src/flaxon/database/__init__.py
src/flaxon/database/connections.py
src/flaxon/database/exceptions.py
src/flaxon/database/health.py
src/flaxon/database/manager.py
src/flaxon/database/migrations.py
src/flaxon/database/repositories.py
src/flaxon/database/transactions.py
src/flaxon/database/adapters/__init__.py
src/flaxon/database/adapters/base.py
src/flaxon/database/adapters/custom.py
src/flaxon/database/adapters/mongodb.py
src/flaxon/database/adapters/mysql.py
src/flaxon/database/adapters/postgresql.py
src/flaxon/database/adapters/redis.py
src/flaxon/database/adapters/sqlalchemy.py
src/flaxon/database/adapters/sqlite.py
src/flaxon/debugging/__init__.py
src/flaxon/debugging/dashboard.py
src/flaxon/debugging/debugger.py
src/flaxon/debugging/error_codes.py
src/flaxon/debugging/error_store.py
src/flaxon/debugging/formatter.py
src/flaxon/debugging/frames.py
src/flaxon/debugging/inspector.py
src/flaxon/debugging/production_errors.py
src/flaxon/debugging/query_snapshot.py
src/flaxon/debugging/redaction.py
src/flaxon/debugging/report.py
src/flaxon/debugging/request_snapshot.py
src/flaxon/debugging/suggestions.py
src/flaxon/debugging/traceback.py
src/flaxon/debugging/websocket_snapshot.py
src/flaxon/dependency_injection/__init__.py
src/flaxon/dependency_injection/container.py
src/flaxon/dependency_injection/decorators.py
src/flaxon/dependency_injection/exceptions.py
src/flaxon/dependency_injection/provider.py
src/flaxon/dependency_injection/resolver.py
src/flaxon/dependency_injection/scope.py
src/flaxon/events/__init__.py
src/flaxon/events/dispatcher.py
src/flaxon/events/event.py
src/flaxon/events/exceptions.py
src/flaxon/events/listener.py
src/flaxon/events/registry.py
src/flaxon/events/subscriber.py
src/flaxon/files/__init__.py
src/flaxon/files/storage.py
src/flaxon/files/streaming.py
src/flaxon/files/upload.py
src/flaxon/files/validation.py
src/flaxon/files/adapters/__init__.py
src/flaxon/files/adapters/custom.py
src/flaxon/files/adapters/local.py
src/flaxon/files/adapters/s3.py
src/flaxon/health/__init__.py
src/flaxon/health/checks.py
src/flaxon/health/probes.py
src/flaxon/health/registry.py
src/flaxon/health/response.py
src/flaxon/http/__init__.py
src/flaxon/http/body.py
src/flaxon/http/content_types.py
src/flaxon/http/cookies.py
src/flaxon/http/exceptions.py
src/flaxon/http/form.py
src/flaxon/http/headers.py
src/flaxon/http/json.py
src/flaxon/http/middleware.py
src/flaxon/http/query_params.py
src/flaxon/http/redirects.py
src/flaxon/http/request.py
src/flaxon/http/response.py
src/flaxon/http/status.py
src/flaxon/http/streaming.py
src/flaxon/http/uploads.py
src/flaxon/jinax/__init__.py
src/flaxon/jinax/ast.py
src/flaxon/jinax/async_render.py
src/flaxon/jinax/cache.py
src/flaxon/jinax/compiler.py
src/flaxon/jinax/components.py
src/flaxon/jinax/context.py
src/flaxon/jinax/diagnostics.py
src/flaxon/jinax/directives.py
src/flaxon/jinax/engine.py
src/flaxon/jinax/environment.py
src/flaxon/jinax/escaping.py
src/flaxon/jinax/exceptions.py
src/flaxon/jinax/expression.py
src/flaxon/jinax/filters.py
src/flaxon/jinax/functions.py
src/flaxon/jinax/hot_reload.py
src/flaxon/jinax/inheritance.py
src/flaxon/jinax/lexer.py
src/flaxon/jinax/loader.py
src/flaxon/jinax/macros.py
src/flaxon/jinax/nodes.py
src/flaxon/jinax/parser.py
src/flaxon/jinax/runtime.py
src/flaxon/jinax/sandbox.py
src/flaxon/jinax/tokens.py
src/flaxon/jinax/loaders/__init__.py
src/flaxon/jinax/loaders/composite.py
src/flaxon/jinax/loaders/dictionary.py
src/flaxon/jinax/loaders/filesystem.py
src/flaxon/jinax/loaders/package.py
src/flaxon/logging/__init__.py
src/flaxon/logging/access.py
src/flaxon/logging/audit.py
src/flaxon/logging/configuration.py
src/flaxon/logging/context.py
src/flaxon/logging/filters.py
src/flaxon/logging/formatters.py
src/flaxon/logging/handlers.py
src/flaxon/logging/json_logger.py
src/flaxon/logging/logger.py
src/flaxon/mail/__init__.py
src/flaxon/mail/mailer.py
src/flaxon/mail/message.py
src/flaxon/mail/templates.py
src/flaxon/mail/adapters/__init__.py
src/flaxon/mail/adapters/console.py
src/flaxon/mail/adapters/custom.py
src/flaxon/mail/adapters/smtp.py
src/flaxon/metrics/__init__.py
src/flaxon/metrics/collector.py
src/flaxon/metrics/counters.py
src/flaxon/metrics/middleware.py
src/flaxon/metrics/prometheus.py
src/flaxon/metrics/timers.py
src/flaxon/middleware/__init__.py
src/flaxon/middleware/base.py
src/flaxon/middleware/body_limit.py
src/flaxon/middleware/compression.py
src/flaxon/middleware/cors.py
src/flaxon/middleware/logging.py
src/flaxon/middleware/proxy_headers.py
src/flaxon/middleware/recovery.py
src/flaxon/middleware/request_id.py
src/flaxon/middleware/security_headers.py
src/flaxon/middleware/sessions.py
src/flaxon/middleware/stack.py
src/flaxon/middleware/timeout.py
src/flaxon/middleware/trusted_hosts.py
src/flaxon/openapi/__init__.py
src/flaxon/openapi/documentation.py
src/flaxon/openapi/examples.py
src/flaxon/openapi/generator.py
src/flaxon/openapi/operation.py
src/flaxon/openapi/redoc.py
src/flaxon/openapi/schema.py
src/flaxon/openapi/swagger.py
src/flaxon/plugins/__init__.py
src/flaxon/plugins/discovery.py
src/flaxon/plugins/exceptions.py
src/flaxon/plugins/hooks.py
src/flaxon/plugins/manager.py
src/flaxon/plugins/plugin.py
src/flaxon/plugins/registry.py
src/flaxon/routing/__init__.py
src/flaxon/routing/converters.py
src/flaxon/routing/dependency.py
src/flaxon/routing/exceptions.py
src/flaxon/routing/group.py
src/flaxon/routing/mount.py
src/flaxon/routing/parameters.py
src/flaxon/routing/resolver.py
src/flaxon/routing/reverse.py
src/flaxon/routing/route.py
src/flaxon/routing/router.py
src/flaxon/routing/trie.py
src/flaxon/security/__init__.py
src/flaxon/security/api_keys.py
src/flaxon/security/authentication.py
src/flaxon/security/authorization.py
src/flaxon/security/cors.py
src/flaxon/security/csrf.py
src/flaxon/security/encryption.py
src/flaxon/security/exceptions.py
src/flaxon/security/headers.py
src/flaxon/security/jwt.py
src/flaxon/security/oauth.py
src/flaxon/security/password.py
src/flaxon/security/permissions.py
src/flaxon/security/rate_limit.py
src/flaxon/security/roles.py
src/flaxon/security/sanitization.py
src/flaxon/security/secrets.py
src/flaxon/security/sessions.py
src/flaxon/serialization/__init__.py
src/flaxon/serialization/decoder.py
src/flaxon/serialization/encoder.py
src/flaxon/serialization/json.py
src/flaxon/serialization/msgpack.py
src/flaxon/serialization/types.py
src/flaxon/server/__init__.py
src/flaxon/server/configuration.py
src/flaxon/server/development.py
src/flaxon/server/processes.py
src/flaxon/server/production.py
src/flaxon/server/reload.py
src/flaxon/server/runner.py
src/flaxon/sessions/__init__.py
src/flaxon/sessions/cookie.py
src/flaxon/sessions/manager.py
src/flaxon/sessions/serializer.py
src/flaxon/sessions/session.py
src/flaxon/sessions/backends/__init__.py
src/flaxon/sessions/backends/database.py
src/flaxon/sessions/backends/memory.py
src/flaxon/sessions/backends/redis.py
src/flaxon/sessions/backends/signed_cookie.py
src/flaxon/tasks/__init__.py
src/flaxon/tasks/context.py
src/flaxon/tasks/exceptions.py
src/flaxon/tasks/queue.py
src/flaxon/tasks/registry.py
src/flaxon/tasks/result.py
src/flaxon/tasks/retry.py
src/flaxon/tasks/scheduler.py
src/flaxon/tasks/serializer.py
src/flaxon/tasks/signals.py
src/flaxon/tasks/task.py
src/flaxon/tasks/worker.py
src/flaxon/tasks/backends/__init__.py
src/flaxon/tasks/backends/custom.py
src/flaxon/tasks/backends/database.py
src/flaxon/tasks/backends/memory.py
src/flaxon/tasks/backends/redis.py
src/flaxon/testing/__init__.py
src/flaxon/testing/application.py
src/flaxon/testing/assertions.py
src/flaxon/testing/client.py
src/flaxon/testing/database.py
src/flaxon/testing/factories.py
src/flaxon/testing/fixtures.py
src/flaxon/testing/mocks.py
src/flaxon/testing/websocket_client.py
src/flaxon/utils/__init__.py
src/flaxon/utils/collections.py
src/flaxon/utils/concurrency.py
src/flaxon/utils/dates.py
src/flaxon/utils/deprecation.py
src/flaxon/utils/encoding.py
src/flaxon/utils/import_string.py
src/flaxon/utils/inspection.py
src/flaxon/utils/naming.py
src/flaxon/utils/network.py
src/flaxon/validation/__init__.py
src/flaxon/validation/coercion.py
src/flaxon/validation/decorators.py
src/flaxon/validation/errors.py
src/flaxon/validation/fields.py
src/flaxon/validation/messages.py
src/flaxon/validation/schema.py
src/flaxon/validation/serializer.py
src/flaxon/validation/validators.py
src/flaxon/websocket/__init__.py
src/flaxon/websocket/authentication.py
src/flaxon/websocket/broadcaster.py
src/flaxon/websocket/connection.py
src/flaxon/websocket/events.py
src/flaxon/websocket/exceptions.py
src/flaxon/websocket/heartbeat.py
src/flaxon/websocket/manager.py
src/flaxon/websocket/message.py
src/flaxon/websocket/redis_backend.py
src/flaxon/websocket/rooms.py
tests/conftest.py
tests/compatibility/test_optional_dependencies.py
tests/compatibility/test_python_311.py
tests/compatibility/test_python_312.py
tests/compatibility/test_python_313.py
tests/integration/test_authentication.py
tests/integration/test_database_transactions.py
tests/integration/test_http_lifecycle.py
tests/integration/test_jinax_rendering.py
tests/integration/test_middleware_stack.py
tests/integration/test_plugin_loading.py
tests/integration/test_task_worker.py
tests/integration/test_websocket_lifecycle.py
tests/performance/test_jinax_render_speed.py
tests/performance/test_json_response.py
tests/performance/test_middleware_overhead.py
tests/performance/test_router_speed.py
tests/performance/test_websocket_connections.py
tests/security/test_csrf.py
tests/security/test_jwt_validation.py
tests/security/test_rate_limiting.py
tests/security/test_secret_redaction.py
tests/security/test_template_sandbox.py
tests/security/test_xss_escaping.py