tigrbl 0.3.17.dev17__tar.gz → 0.3.17.dev18__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.3.17.dev17 → tigrbl-0.3.17.dev18}/PKG-INFO +1 -1
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/pyproject.toml +1 -1
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/__init__.py +0 -1
- tigrbl-0.3.17.dev18/tigrbl/orm/__init__.py +32 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/LICENSE +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/README.md +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/README.md +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/config/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/config/constants.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/config/defaults.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/ddl/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/decorators/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/decorators/allow_anon.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/decorators/engine.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/decorators/hook.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/decorators/middlewares.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/decorators/op.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/decorators/response.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/decorators/rest.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/decorators/router.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/decorators/schema.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/decorators/session.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/docs/column_specs.md +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/docs/session.md +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/docs/verbosity.md +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/engine/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/engine/bind.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/engine/builders.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/engine/capabilities.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/engine/collect.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/engine/docs/PLUGINS.md +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/engine/plugins.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/engine/registry.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/engine/resolver.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/hook/exceptions.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/hook/types.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/middlewares/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/middlewares/compose.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/op/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/op/canonical.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/op/collect.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/op/types.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/requests.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/rest/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/schema/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/schema/builder/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/schema/builder/build_schema.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/schema/builder/cache.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/schema/builder/extras.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/schema/builder/helpers.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/schema/builder/list_params.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/schema/builder/strip_parent_fields.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/schema/utils.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/security/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/security/dependencies.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/shortcuts/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/shortcuts/app.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/shortcuts/column.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/shortcuts/engine.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/shortcuts/hook.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/shortcuts/op.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/shortcuts/responses.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/shortcuts/router.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/shortcuts/schema.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/shortcuts/table.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/specs.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/diagnostics/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/diagnostics/healthz.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/diagnostics/hookz.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/diagnostics/kernelz.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/diagnostics/methodz.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/diagnostics/router.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/diagnostics/utils.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/docs/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/docs/lens.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/docs/openapi/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/docs/openapi/helpers.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/docs/openapi/metadata.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/docs/openapi/mount.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/docs/openapi/schema.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/docs/openrpc.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/docs/swagger.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/favicon/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/favicon/assets/favicon.svg +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/system/uvicorn.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/transport/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/transport/jsonrpc/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/transport/jsonrpc/helpers.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/transport/jsonrpc/models.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/transport/rest/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/transport/rest/aggregator.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/types/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/utils/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/utils/schema.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/vendor/__init__.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/vendor/jinja.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/vendor/pydantic.py +0 -0
- {tigrbl-0.3.17.dev17 → tigrbl-0.3.17.dev18}/tigrbl/vendor/sqlalchemy.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl
|
|
3
|
-
Version: 0.3.17.
|
|
3
|
+
Version: 0.3.17.dev18
|
|
4
4
|
Summary: A modern pure ASGI/WSGI Python framework for building schema-first REST and JSON-RPC APIs with SQLAlchemy models, typed validation, lifecycle hooks, and engine extension support.
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
License-File: LICENSE
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "tigrbl"
|
|
3
|
-
version = "0.3.17.
|
|
3
|
+
version = "0.3.17.dev18"
|
|
4
4
|
description = "A modern pure ASGI/WSGI Python framework for building schema-first REST and JSON-RPC APIs with SQLAlchemy models, typed validation, lifecycle hooks, and engine extension support."
|
|
5
5
|
license = "Apache-2.0"
|
|
6
6
|
readme = "README.md"
|
|
@@ -16,7 +16,6 @@ _ALIAS_MODULES = {
|
|
|
16
16
|
"_base": "tigrbl_base._base",
|
|
17
17
|
"_concrete": "tigrbl_concrete._concrete",
|
|
18
18
|
"core": "tigrbl_ops_oltp",
|
|
19
|
-
"orm": "tigrbl_orm.orm",
|
|
20
19
|
"runtime": "tigrbl_runtime.runtime",
|
|
21
20
|
"executors": "tigrbl_runtime.executors",
|
|
22
21
|
"atoms": "tigrbl_atoms.atoms",
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"""Compatibility module exposing ``tigrbl_orm.orm`` as ``tigrbl.orm``."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from importlib import import_module
|
|
6
|
+
import sys
|
|
7
|
+
|
|
8
|
+
_target = import_module("tigrbl_orm.orm")
|
|
9
|
+
|
|
10
|
+
for _name, _value in vars(_target).items():
|
|
11
|
+
if _name.startswith("__") and _name not in {"__doc__", "__all__", "__path__"}:
|
|
12
|
+
continue
|
|
13
|
+
globals()[_name] = _value
|
|
14
|
+
|
|
15
|
+
__doc__ = getattr(_target, "__doc__", __doc__)
|
|
16
|
+
__all__ = list(getattr(_target, "__all__", []))
|
|
17
|
+
__path__ = list(getattr(_target, "__path__", []))
|
|
18
|
+
|
|
19
|
+
# Expose commonly imported child modules directly on ``tigrbl.orm``.
|
|
20
|
+
for _child in ("mixins", "tables"):
|
|
21
|
+
_child_module = import_module(f"tigrbl_orm.orm.{_child}")
|
|
22
|
+
globals()[_child] = _child_module
|
|
23
|
+
sys.modules.setdefault(f"tigrbl.orm.{_child}", _child_module)
|
|
24
|
+
if _child not in __all__:
|
|
25
|
+
__all__.append(_child)
|
|
26
|
+
|
|
27
|
+
_target_prefix = "tigrbl_orm.orm"
|
|
28
|
+
_alias_prefix = "tigrbl.orm"
|
|
29
|
+
for _module_name, _module in tuple(sys.modules.items()):
|
|
30
|
+
if _module_name.startswith(f"{_target_prefix}."):
|
|
31
|
+
_suffix = _module_name[len(_target_prefix) :]
|
|
32
|
+
sys.modules.setdefault(f"{_alias_prefix}{_suffix}", _module)
|
|
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
|