tigrbl 0.4.3.dev4__tar.gz → 0.4.4.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/PKG-INFO +1 -1
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/pyproject.toml +1 -1
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/LICENSE +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/NOTICE +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/README.md +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/__main__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/canonical_json.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/cli.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/config/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/config/constants.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/config/defaults.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/ddl/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/decorators/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/decorators/allow_anon.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/decorators/engine.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/decorators/hook.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/decorators/middlewares.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/decorators/op.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/decorators/response.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/decorators/rest.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/decorators/schema.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/decorators/session.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/engine/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/engine/bind.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/engine/builders.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/engine/capabilities.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/engine/collect.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/engine/plugins.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/engine/registry.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/engine/resolver.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/factories/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/factories/app.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/factories/column.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/factories/engine.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/factories/hook.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/factories/op.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/factories/responses.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/factories/router.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/factories/schema.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/factories/table.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/hook/exceptions.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/hook/types.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/middlewares/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/middlewares/compose.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/op/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/op/canonical.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/op/collect.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/op/types.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/orm/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/requests.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/rest/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/schema/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/schema/builder/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/schema/builder/build_schema.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/schema/builder/cache.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/schema/builder/extras.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/schema/builder/helpers.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/schema/builder/list_params.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/schema/builder/strip_parent_fields.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/schema/jsonrpc.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/schema/utils.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/security/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/security/dependencies.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/session/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/session/base.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/session/spec.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/shortcuts/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/shortcuts/app.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/shortcuts/column.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/shortcuts/engine.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/shortcuts/hook.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/shortcuts/op.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/shortcuts/responses.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/shortcuts/rest.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/shortcuts/router.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/shortcuts/schema.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/shortcuts/table.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/specs.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/diagnostics/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/diagnostics/healthz.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/diagnostics/hookz.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/diagnostics/kernelz.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/diagnostics/methodz.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/diagnostics/router.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/diagnostics/utils.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/docs/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/docs/lens.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/docs/openapi/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/docs/openapi/helpers.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/docs/openapi/metadata.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/docs/openapi/mount.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/docs/openapi/schema.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/docs/openrpc.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/docs/swagger.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/favicon/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/favicon/assets/favicon.svg +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/system/uvicorn.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/transport/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/transport/jsonrpc/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/transport/jsonrpc/helpers.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/transport/jsonrpc/models.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/transport/rest/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/transport/rest/aggregator.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/types/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/utils/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/utils/schema.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/vendor/__init__.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/vendor/jinja.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/vendor/pydantic.py +0 -0
- {tigrbl-0.4.3.dev4 → tigrbl-0.4.4.dev1}/tigrbl/vendor/sqlalchemy.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.4.dev1
|
|
4
4
|
Summary: Schema-first ASGI framework for REST and JSON-RPC APIs with OpenAPI, OpenRPC, SQLAlchemy, typed validation, hooks, and engine plugins.
|
|
5
5
|
License: Apache License
|
|
6
6
|
Version 2.0, January 2004
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "tigrbl"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.4.dev1"
|
|
4
4
|
description = "Schema-first ASGI framework for REST and JSON-RPC APIs with OpenAPI, OpenRPC, SQLAlchemy, typed validation, hooks, and engine plugins."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { file = "LICENSE" }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|