tigrbl 0.4.1.dev3__tar.gz → 0.4.1.dev6__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.1.dev3 → tigrbl-0.4.1.dev6}/PKG-INFO +4 -4
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/README.md +3 -3
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/pyproject.toml +1 -1
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/LICENSE +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/__main__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/canonical_json.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/cli.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/config/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/config/constants.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/config/defaults.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/ddl/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/decorators/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/decorators/allow_anon.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/decorators/engine.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/decorators/hook.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/decorators/middlewares.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/decorators/op.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/decorators/response.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/decorators/rest.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/decorators/schema.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/decorators/session.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/engine/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/engine/bind.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/engine/builders.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/engine/capabilities.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/engine/collect.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/engine/plugins.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/engine/registry.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/engine/resolver.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/factories/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/factories/app.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/factories/column.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/factories/engine.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/factories/hook.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/factories/op.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/factories/responses.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/factories/router.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/factories/schema.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/factories/table.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/hook/exceptions.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/hook/types.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/middlewares/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/middlewares/compose.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/op/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/op/canonical.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/op/collect.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/op/types.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/orm/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/requests.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/rest/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/schema/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/schema/builder/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/schema/builder/build_schema.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/schema/builder/cache.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/schema/builder/extras.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/schema/builder/helpers.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/schema/builder/list_params.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/schema/builder/strip_parent_fields.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/schema/utils.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/security/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/security/dependencies.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/session/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/session/base.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/session/spec.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/shortcuts/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/shortcuts/app.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/shortcuts/column.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/shortcuts/engine.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/shortcuts/hook.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/shortcuts/op.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/shortcuts/responses.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/shortcuts/rest.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/shortcuts/router.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/shortcuts/schema.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/shortcuts/table.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/specs.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/diagnostics/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/diagnostics/healthz.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/diagnostics/hookz.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/diagnostics/kernelz.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/diagnostics/methodz.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/diagnostics/router.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/diagnostics/utils.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/docs/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/docs/lens.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/docs/openapi/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/docs/openapi/helpers.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/docs/openapi/metadata.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/docs/openapi/mount.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/docs/openapi/schema.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/docs/openrpc.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/docs/swagger.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/favicon/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/favicon/assets/favicon.svg +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/system/uvicorn.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/transport/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/transport/jsonrpc/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/transport/jsonrpc/helpers.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/transport/jsonrpc/models.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/transport/rest/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/transport/rest/aggregator.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/types/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/utils/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/utils/schema.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/vendor/__init__.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/vendor/jinja.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/vendor/pydantic.py +0 -0
- {tigrbl-0.4.1.dev3 → tigrbl-0.4.1.dev6}/tigrbl/vendor/sqlalchemy.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl
|
|
3
|
-
Version: 0.4.1.
|
|
3
|
+
Version: 0.4.1.dev6
|
|
4
4
|
Summary: Schema-first ASGI API framework for REST, JSON-RPC, OpenAPI, OpenRPC, SQLAlchemy models, typed validation, lifecycle hooks, and engine plugins.
|
|
5
5
|
License: Apache License
|
|
6
6
|
Version 2.0, January 2004
|
|
@@ -259,12 +259,12 @@ Description-Content-Type: text/markdown
|
|
|
259
259
|

|
|
260
260
|
|
|
261
261
|
<p align="center">
|
|
262
|
-
<a href="https://
|
|
263
|
-
<img src="https://
|
|
262
|
+
<a href="https://pepy.tech/project/tigrbl">
|
|
263
|
+
<img src="https://static.pepy.tech/badge/tigrbl" alt="Pepy downloads for tigrbl"/></a>
|
|
264
264
|
<a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl/">
|
|
265
265
|
<img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl.svg" alt="Repository views for tigrbl"/></a>
|
|
266
266
|
<a href="https://pypi.org/project/tigrbl/">
|
|
267
|
-
<img src="https://img.shields.io/
|
|
267
|
+
<img src="https://img.shields.io/badge/python-3.10--3.14-blue" alt="Python 3.10 through 3.14"/></a>
|
|
268
268
|
<a href="https://pypi.org/project/tigrbl/">
|
|
269
269
|
<img src="https://img.shields.io/pypi/l/tigrbl" alt="PyPI license metadata for tigrbl"/></a>
|
|
270
270
|
<a href="https://pypi.org/project/tigrbl/">
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<a href="https://
|
|
5
|
-
<img src="https://
|
|
4
|
+
<a href="https://pepy.tech/project/tigrbl">
|
|
5
|
+
<img src="https://static.pepy.tech/badge/tigrbl" alt="Pepy downloads for tigrbl"/></a>
|
|
6
6
|
<a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl/">
|
|
7
7
|
<img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl.svg" alt="Repository views for tigrbl"/></a>
|
|
8
8
|
<a href="https://pypi.org/project/tigrbl/">
|
|
9
|
-
<img src="https://img.shields.io/
|
|
9
|
+
<img src="https://img.shields.io/badge/python-3.10--3.14-blue" alt="Python 3.10 through 3.14"/></a>
|
|
10
10
|
<a href="https://pypi.org/project/tigrbl/">
|
|
11
11
|
<img src="https://img.shields.io/pypi/l/tigrbl" alt="PyPI license metadata for tigrbl"/></a>
|
|
12
12
|
<a href="https://pypi.org/project/tigrbl/">
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "tigrbl"
|
|
3
|
-
version = "0.4.1.
|
|
3
|
+
version = "0.4.1.dev6"
|
|
4
4
|
description = "Schema-first ASGI API framework for REST, JSON-RPC, OpenAPI, OpenRPC, SQLAlchemy models, typed validation, lifecycle 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
|