tigrbl 0.0.1.dev1__py3-none-any.whl → 0.3.0.dev3__py3-none-any.whl
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/README.md +94 -0
- tigrbl/__init__.py +139 -14
- tigrbl/api/__init__.py +6 -0
- tigrbl/api/_api.py +72 -0
- tigrbl/api/api_spec.py +30 -0
- tigrbl/api/mro_collect.py +43 -0
- tigrbl/api/shortcuts.py +56 -0
- tigrbl/api/tigrbl_api.py +286 -0
- tigrbl/app/__init__.py +0 -0
- tigrbl/app/_app.py +61 -0
- tigrbl/app/app_spec.py +42 -0
- tigrbl/app/mro_collect.py +67 -0
- tigrbl/app/shortcuts.py +65 -0
- tigrbl/app/tigrbl_app.py +314 -0
- tigrbl/bindings/__init__.py +73 -0
- tigrbl/bindings/api/__init__.py +12 -0
- tigrbl/bindings/api/common.py +109 -0
- tigrbl/bindings/api/include.py +256 -0
- tigrbl/bindings/api/resource_proxy.py +149 -0
- tigrbl/bindings/api/rpc.py +111 -0
- tigrbl/bindings/columns.py +49 -0
- tigrbl/bindings/handlers/__init__.py +11 -0
- tigrbl/bindings/handlers/builder.py +119 -0
- tigrbl/bindings/handlers/ctx.py +74 -0
- tigrbl/bindings/handlers/identifiers.py +228 -0
- tigrbl/bindings/handlers/namespaces.py +51 -0
- tigrbl/bindings/handlers/steps.py +276 -0
- tigrbl/bindings/hooks.py +311 -0
- tigrbl/bindings/model.py +194 -0
- tigrbl/bindings/model_helpers.py +139 -0
- tigrbl/bindings/model_registry.py +77 -0
- tigrbl/bindings/rest/__init__.py +7 -0
- tigrbl/bindings/rest/attach.py +34 -0
- tigrbl/bindings/rest/collection.py +265 -0
- tigrbl/bindings/rest/common.py +116 -0
- tigrbl/bindings/rest/fastapi.py +76 -0
- tigrbl/bindings/rest/helpers.py +119 -0
- tigrbl/bindings/rest/io.py +317 -0
- tigrbl/bindings/rest/member.py +367 -0
- tigrbl/bindings/rest/router.py +292 -0
- tigrbl/bindings/rest/routing.py +133 -0
- tigrbl/bindings/rpc.py +364 -0
- tigrbl/bindings/schemas/__init__.py +11 -0
- tigrbl/bindings/schemas/builder.py +348 -0
- tigrbl/bindings/schemas/defaults.py +260 -0
- tigrbl/bindings/schemas/utils.py +193 -0
- tigrbl/column/README.md +62 -0
- tigrbl/column/__init__.py +72 -0
- tigrbl/column/_column.py +96 -0
- tigrbl/column/column_spec.py +40 -0
- tigrbl/column/field_spec.py +31 -0
- tigrbl/column/infer/__init__.py +25 -0
- tigrbl/column/infer/core.py +92 -0
- tigrbl/column/infer/jsonhints.py +44 -0
- tigrbl/column/infer/planning.py +133 -0
- tigrbl/column/infer/types.py +102 -0
- tigrbl/column/infer/utils.py +59 -0
- tigrbl/column/io_spec.py +133 -0
- tigrbl/column/mro_collect.py +59 -0
- tigrbl/column/shortcuts.py +89 -0
- tigrbl/column/storage_spec.py +65 -0
- tigrbl/config/__init__.py +19 -0
- tigrbl/config/constants.py +224 -0
- tigrbl/config/defaults.py +29 -0
- tigrbl/config/resolver.py +295 -0
- tigrbl/core/__init__.py +47 -0
- tigrbl/core/crud/__init__.py +36 -0
- tigrbl/core/crud/bulk.py +168 -0
- tigrbl/core/crud/helpers/__init__.py +76 -0
- tigrbl/core/crud/helpers/db.py +92 -0
- tigrbl/core/crud/helpers/enum.py +86 -0
- tigrbl/core/crud/helpers/filters.py +162 -0
- tigrbl/core/crud/helpers/model.py +123 -0
- tigrbl/core/crud/helpers/normalize.py +99 -0
- tigrbl/core/crud/ops.py +235 -0
- tigrbl/ddl/__init__.py +344 -0
- tigrbl/decorators.py +17 -0
- tigrbl/deps/__init__.py +20 -0
- tigrbl/deps/fastapi.py +45 -0
- tigrbl/deps/favicon.svg +4 -0
- tigrbl/deps/jinja.py +27 -0
- tigrbl/deps/pydantic.py +10 -0
- tigrbl/deps/sqlalchemy.py +94 -0
- tigrbl/deps/starlette.py +36 -0
- tigrbl/engine/__init__.py +26 -0
- tigrbl/engine/_engine.py +130 -0
- tigrbl/engine/bind.py +33 -0
- tigrbl/engine/builders.py +236 -0
- tigrbl/engine/collect.py +111 -0
- tigrbl/engine/decorators.py +108 -0
- tigrbl/engine/engine_spec.py +261 -0
- tigrbl/engine/resolver.py +224 -0
- tigrbl/engine/shortcuts.py +216 -0
- tigrbl/hook/__init__.py +21 -0
- tigrbl/hook/_hook.py +22 -0
- tigrbl/hook/decorators.py +28 -0
- tigrbl/hook/hook_spec.py +24 -0
- tigrbl/hook/mro_collect.py +98 -0
- tigrbl/hook/shortcuts.py +44 -0
- tigrbl/hook/types.py +76 -0
- tigrbl/op/__init__.py +50 -0
- tigrbl/op/_op.py +31 -0
- tigrbl/op/canonical.py +31 -0
- tigrbl/op/collect.py +11 -0
- tigrbl/op/decorators.py +238 -0
- tigrbl/op/model_registry.py +301 -0
- tigrbl/op/mro_collect.py +99 -0
- tigrbl/op/resolver.py +216 -0
- tigrbl/op/types.py +136 -0
- tigrbl/orm/__init__.py +1 -0
- tigrbl/orm/mixins/_RowBound.py +83 -0
- tigrbl/orm/mixins/__init__.py +95 -0
- tigrbl/orm/mixins/bootstrappable.py +113 -0
- tigrbl/orm/mixins/bound.py +47 -0
- tigrbl/orm/mixins/edges.py +40 -0
- tigrbl/orm/mixins/fields.py +165 -0
- tigrbl/orm/mixins/hierarchy.py +54 -0
- tigrbl/orm/mixins/key_digest.py +44 -0
- tigrbl/orm/mixins/lifecycle.py +115 -0
- tigrbl/orm/mixins/locks.py +51 -0
- tigrbl/orm/mixins/markers.py +16 -0
- tigrbl/orm/mixins/operations.py +57 -0
- tigrbl/orm/mixins/ownable.py +337 -0
- tigrbl/orm/mixins/principals.py +98 -0
- tigrbl/orm/mixins/tenant_bound.py +301 -0
- tigrbl/orm/mixins/upsertable.py +111 -0
- tigrbl/orm/mixins/utils.py +49 -0
- tigrbl/orm/tables/__init__.py +72 -0
- tigrbl/orm/tables/_base.py +8 -0
- tigrbl/orm/tables/audit.py +56 -0
- tigrbl/orm/tables/client.py +25 -0
- tigrbl/orm/tables/group.py +29 -0
- tigrbl/orm/tables/org.py +30 -0
- tigrbl/orm/tables/rbac.py +76 -0
- tigrbl/orm/tables/status.py +106 -0
- tigrbl/orm/tables/tenant.py +22 -0
- tigrbl/orm/tables/user.py +39 -0
- tigrbl/response/README.md +34 -0
- tigrbl/response/__init__.py +33 -0
- tigrbl/response/bind.py +12 -0
- tigrbl/response/decorators.py +37 -0
- tigrbl/response/resolver.py +83 -0
- tigrbl/response/shortcuts.py +144 -0
- tigrbl/response/types.py +49 -0
- tigrbl/rest/__init__.py +27 -0
- tigrbl/runtime/README.md +129 -0
- tigrbl/runtime/__init__.py +20 -0
- tigrbl/runtime/atoms/__init__.py +102 -0
- tigrbl/runtime/atoms/emit/__init__.py +42 -0
- tigrbl/runtime/atoms/emit/paired_post.py +158 -0
- tigrbl/runtime/atoms/emit/paired_pre.py +106 -0
- tigrbl/runtime/atoms/emit/readtime_alias.py +120 -0
- tigrbl/runtime/atoms/out/__init__.py +38 -0
- tigrbl/runtime/atoms/out/masking.py +135 -0
- tigrbl/runtime/atoms/refresh/__init__.py +38 -0
- tigrbl/runtime/atoms/refresh/demand.py +130 -0
- tigrbl/runtime/atoms/resolve/__init__.py +40 -0
- tigrbl/runtime/atoms/resolve/assemble.py +167 -0
- tigrbl/runtime/atoms/resolve/paired_gen.py +147 -0
- tigrbl/runtime/atoms/response/__init__.py +17 -0
- tigrbl/runtime/atoms/response/negotiate.py +30 -0
- tigrbl/runtime/atoms/response/negotiation.py +43 -0
- tigrbl/runtime/atoms/response/render.py +36 -0
- tigrbl/runtime/atoms/response/renderer.py +116 -0
- tigrbl/runtime/atoms/response/template.py +44 -0
- tigrbl/runtime/atoms/response/templates.py +88 -0
- tigrbl/runtime/atoms/schema/__init__.py +40 -0
- tigrbl/runtime/atoms/schema/collect_in.py +21 -0
- tigrbl/runtime/atoms/schema/collect_out.py +21 -0
- tigrbl/runtime/atoms/storage/__init__.py +38 -0
- tigrbl/runtime/atoms/storage/to_stored.py +167 -0
- tigrbl/runtime/atoms/wire/__init__.py +45 -0
- tigrbl/runtime/atoms/wire/build_in.py +166 -0
- tigrbl/runtime/atoms/wire/build_out.py +87 -0
- tigrbl/runtime/atoms/wire/dump.py +206 -0
- tigrbl/runtime/atoms/wire/validate_in.py +227 -0
- tigrbl/runtime/context.py +206 -0
- tigrbl/runtime/errors/__init__.py +61 -0
- tigrbl/runtime/errors/converters.py +214 -0
- tigrbl/runtime/errors/exceptions.py +124 -0
- tigrbl/runtime/errors/mappings.py +71 -0
- tigrbl/runtime/errors/utils.py +150 -0
- tigrbl/runtime/events.py +209 -0
- tigrbl/runtime/executor/__init__.py +6 -0
- tigrbl/runtime/executor/guards.py +132 -0
- tigrbl/runtime/executor/helpers.py +88 -0
- tigrbl/runtime/executor/invoke.py +150 -0
- tigrbl/runtime/executor/types.py +84 -0
- tigrbl/runtime/kernel.py +628 -0
- tigrbl/runtime/labels.py +353 -0
- tigrbl/runtime/opview.py +87 -0
- tigrbl/runtime/ordering.py +256 -0
- tigrbl/runtime/system.py +279 -0
- tigrbl/runtime/trace.py +330 -0
- tigrbl/schema/__init__.py +38 -0
- tigrbl/schema/_schema.py +27 -0
- tigrbl/schema/builder/__init__.py +17 -0
- tigrbl/schema/builder/build_schema.py +209 -0
- tigrbl/schema/builder/cache.py +24 -0
- tigrbl/schema/builder/compat.py +16 -0
- tigrbl/schema/builder/extras.py +85 -0
- tigrbl/schema/builder/helpers.py +51 -0
- tigrbl/schema/builder/list_params.py +117 -0
- tigrbl/schema/builder/strip_parent_fields.py +70 -0
- tigrbl/schema/collect.py +55 -0
- tigrbl/schema/decorators.py +68 -0
- tigrbl/schema/get_schema.py +86 -0
- tigrbl/schema/schema_spec.py +20 -0
- tigrbl/schema/shortcuts.py +42 -0
- tigrbl/schema/types.py +34 -0
- tigrbl/schema/utils.py +143 -0
- tigrbl/shortcuts.py +22 -0
- tigrbl/specs.py +44 -0
- tigrbl/system/__init__.py +12 -0
- tigrbl/system/diagnostics/__init__.py +24 -0
- tigrbl/system/diagnostics/compat.py +31 -0
- tigrbl/system/diagnostics/healthz.py +41 -0
- tigrbl/system/diagnostics/hookz.py +51 -0
- tigrbl/system/diagnostics/kernelz.py +20 -0
- tigrbl/system/diagnostics/methodz.py +43 -0
- tigrbl/system/diagnostics/router.py +73 -0
- tigrbl/system/diagnostics/utils.py +43 -0
- tigrbl/table/__init__.py +9 -0
- tigrbl/table/_base.py +237 -0
- tigrbl/table/_table.py +54 -0
- tigrbl/table/mro_collect.py +69 -0
- tigrbl/table/shortcuts.py +57 -0
- tigrbl/table/table_spec.py +28 -0
- tigrbl/transport/__init__.py +74 -0
- tigrbl/transport/jsonrpc/__init__.py +19 -0
- tigrbl/transport/jsonrpc/dispatcher.py +352 -0
- tigrbl/transport/jsonrpc/helpers.py +115 -0
- tigrbl/transport/jsonrpc/models.py +41 -0
- tigrbl/transport/rest/__init__.py +25 -0
- tigrbl/transport/rest/aggregator.py +132 -0
- tigrbl/types/__init__.py +174 -0
- tigrbl/types/allow_anon_provider.py +19 -0
- tigrbl/types/authn_abc.py +30 -0
- tigrbl/types/nested_path_provider.py +22 -0
- tigrbl/types/op.py +35 -0
- tigrbl/types/op_config_provider.py +17 -0
- tigrbl/types/op_verb_alias_provider.py +33 -0
- tigrbl/types/request_extras_provider.py +22 -0
- tigrbl/types/response_extras_provider.py +22 -0
- tigrbl/types/table_config_provider.py +13 -0
- tigrbl-0.3.0.dev3.dist-info/LICENSE +201 -0
- tigrbl-0.3.0.dev3.dist-info/METADATA +501 -0
- tigrbl-0.3.0.dev3.dist-info/RECORD +249 -0
- tigrbl/ExampleAgent.py +0 -1
- tigrbl-0.0.1.dev1.dist-info/METADATA +0 -18
- tigrbl-0.0.1.dev1.dist-info/RECORD +0 -5
- {tigrbl-0.0.1.dev1.dist-info → tigrbl-0.3.0.dev3.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
tigrbl/README.md,sha256=ed4kzQZJ44MkqbWEcFDFVQC6wbuMY7KkFlWmm4YCEgg,3753
|
|
2
|
+
tigrbl/__init__.py,sha256=9Sx1PgBOHRcu5mo001oENxKhCuJEEZjpnyISYJjJOrg,4286
|
|
3
|
+
tigrbl/api/__init__.py,sha256=iU8usWi_Xa5brbyYsFqLV06Ad9vTXFuVsyN7NFyyuY4,137
|
|
4
|
+
tigrbl/api/_api.py,sha256=RVVK3qA2SiSxWmJBEc6jT3FEbBxH5u5g0CX7xCzQdi4,2848
|
|
5
|
+
tigrbl/api/api_spec.py,sha256=ESSts5TW2pb4a9wU9H6drmKeU7YbZwx_xPaQ54RFuR4,991
|
|
6
|
+
tigrbl/api/mro_collect.py,sha256=V9U62GsBKDJ0R0N-8f2lVAEpjaO7i74LUcNliwnW-Co,1598
|
|
7
|
+
tigrbl/api/shortcuts.py,sha256=_Ha6yQilo8siXQrSd3ALiK6IzFmgL_OePqs5gy9bFRs,1454
|
|
8
|
+
tigrbl/api/tigrbl_api.py,sha256=qi1bI3tD-ND49u3pPm2AbWbYO7rwBRvO724Afl8iq1E,10466
|
|
9
|
+
tigrbl/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
tigrbl/app/_app.py,sha256=oVhITLiaDj8MY7AP5kDrCiFiFjxPAIygsM6x-Z0gH3I,2592
|
|
11
|
+
tigrbl/app/app_spec.py,sha256=RzVHibgoIyQQtlQzRtrWDa4pSD7PpWsysgfztJ1tSRY,1474
|
|
12
|
+
tigrbl/app/mro_collect.py,sha256=JfmkAnUGLgVVaevAjVU9O_8JMyJAYiTXTmrxW4EdPx8,2025
|
|
13
|
+
tigrbl/app/shortcuts.py,sha256=PEMbmwaqW8a3jkcHM5AXsYA2mmuXGFpOTnqlJnUX9Lo,1775
|
|
14
|
+
tigrbl/app/tigrbl_app.py,sha256=o-amxlU6UzolA9v8ZVvcrrRe5LLns1005F6gpkV_yas,11584
|
|
15
|
+
tigrbl/bindings/__init__.py,sha256=GcM5PTKNLS1Jx__OiAcjLI5yybL40RrA8OzMVPno4_U,2643
|
|
16
|
+
tigrbl/bindings/api/__init__.py,sha256=hqPCVcqQIsfLb_rU-rnK6gUKLVduYc3VujXV8lN0S_c,448
|
|
17
|
+
tigrbl/bindings/api/common.py,sha256=2U5ig5JmrD3Vsq6SBgDMTSyq66aznNdw4yVqjghutFA,3652
|
|
18
|
+
tigrbl/bindings/api/include.py,sha256=50uABoV0jQ1kFWi-imJ21EH4c-Y2XyuBZL5svVXUKQk,10074
|
|
19
|
+
tigrbl/bindings/api/resource_proxy.py,sha256=9pYWgddaxGxRRst2gimkRsP-miCKFF06_4N1ZW35I4U,6040
|
|
20
|
+
tigrbl/bindings/api/rpc.py,sha256=Dj8WkIoEaTAGyOgl5EAxX74b-4jB7uxSGFP-KwcQlkE,4155
|
|
21
|
+
tigrbl/bindings/columns.py,sha256=qy3WVEdDK1BCHwPBggCtRFrimjqVH6qdEtREBW1FUzY,1524
|
|
22
|
+
tigrbl/bindings/handlers/__init__.py,sha256=NgJ3rfHjWGd4QZMNn1gE2mIFOvAm4ITgWrJQcSEyw8U,315
|
|
23
|
+
tigrbl/bindings/handlers/builder.py,sha256=KnZzbfy978e1G8YsEZuVX6EULW7gYP1fGnDeaNxjTQA,4138
|
|
24
|
+
tigrbl/bindings/handlers/ctx.py,sha256=nOhqvSIok13Gsv3w3H_1qjzDndWlZxOxz68Bc6I57ow,2233
|
|
25
|
+
tigrbl/bindings/handlers/identifiers.py,sha256=CigqPizZzHhleoOvPNiNeKYlPYOzsZnq7nkJuWGU9YQ,7854
|
|
26
|
+
tigrbl/bindings/handlers/namespaces.py,sha256=F1_5-96HM_ci4iQMEsxI6zDaY0vT70xr0MUtGoQmX_4,1790
|
|
27
|
+
tigrbl/bindings/handlers/steps.py,sha256=SikxHwtFwsIaBgqzdJdAnVvdcATV4vBoYiaKC4oK7TM,9670
|
|
28
|
+
tigrbl/bindings/hooks.py,sha256=tr5hI5ByfAHYQB8HClQ7RO1dg4wCFnfD0I1Jyse2AfU,12306
|
|
29
|
+
tigrbl/bindings/model.py,sha256=ZgS-_NAnTJ55XyMJ9YkL2NxDFIm8LCao2XXyEO2-qoM,7553
|
|
30
|
+
tigrbl/bindings/model_helpers.py,sha256=3rbt7YFT2ohBGNsd7nfKnnSnHz1nOmeE_xIyAjubBQQ,4493
|
|
31
|
+
tigrbl/bindings/model_registry.py,sha256=ACMOIiQbyLs-89BwSNjY6iAS6xR8_vUdl0OcuT1p7ro,2424
|
|
32
|
+
tigrbl/bindings/rest/__init__.py,sha256=u3vD4v9bhD8wotjt7e2Wt46pmGOC5BWHo9co9KOYLxQ,193
|
|
33
|
+
tigrbl/bindings/rest/attach.py,sha256=7fGb1El6ZdCBVn3LvEcyFTNYPPeaEaIGLbyAGzM7ebE,1036
|
|
34
|
+
tigrbl/bindings/rest/collection.py,sha256=_On1B3ga-4YZ2vsNNcNVEoPmCamxj9vAn0UIspcL5xU,8759
|
|
35
|
+
tigrbl/bindings/rest/common.py,sha256=2iWC6sYW-4xgpXfDpVQxHlMgZLHlQhSFIwUvR9kd-NU,2435
|
|
36
|
+
tigrbl/bindings/rest/fastapi.py,sha256=eUg2Aj5JCBlsMSBsf0GJF9KueZnGYhUeGHQ9N7-UB6Y,2072
|
|
37
|
+
tigrbl/bindings/rest/helpers.py,sha256=LrYhqokKAqgyXbxDGKIvXkW14xGoBmcSBurr9eyrPHY,3768
|
|
38
|
+
tigrbl/bindings/rest/io.py,sha256=Sl1nFpAuqv9jqw835YxhdEQ43CJ2XPPA29zeUsBxDsM,11107
|
|
39
|
+
tigrbl/bindings/rest/member.py,sha256=829_4kLdAuOhLn5HFhwZjDiWFtDMBC9UULW7TfRaiTU,12306
|
|
40
|
+
tigrbl/bindings/rest/router.py,sha256=Vxn4Z97rk2Pyux5W3ngfakaYShVi5gealWqfD1-kYvY,10723
|
|
41
|
+
tigrbl/bindings/rest/routing.py,sha256=4TQaJHRCc5Fixo_d05BLbqr8OCUFQpUQv84GwvIHwBM,3767
|
|
42
|
+
tigrbl/bindings/rpc.py,sha256=TsRNQ2q6LH7Dn8j_fguKimUOXRKUB8gmdOek7bp8Yjo,13196
|
|
43
|
+
tigrbl/bindings/schemas/__init__.py,sha256=2D5skLUnHvtn0a4zm5AIxj2JHJN7GqFuCOr_hKslCuQ,313
|
|
44
|
+
tigrbl/bindings/schemas/builder.py,sha256=nOTnaDCqGgptZEyFtAjNqfph2YcTytI7M35B2VJyz4o,13116
|
|
45
|
+
tigrbl/bindings/schemas/defaults.py,sha256=fCyi8in6ItBzabwzz-7Er7NR8O3x3IhJPIQt4uyv7_U,9184
|
|
46
|
+
tigrbl/bindings/schemas/utils.py,sha256=fLBKGNpcADJGePxRf9-s9sonBH3cAze1YwztcVJNGoA,7211
|
|
47
|
+
tigrbl/column/README.md,sha256=TP7kbwSg0t5ZX68iAL0_62yC2cDOmwznIM23jXb4H5E,2169
|
|
48
|
+
tigrbl/column/__init__.py,sha256=84Aa9AQbmAGnJrFcH5dF92WBqFllgbZjvoPaFHijOW4,1764
|
|
49
|
+
tigrbl/column/_column.py,sha256=WUDeHCglwrX0lugixzsNvTk34iUrMLPCyIcnBieA0UQ,3219
|
|
50
|
+
tigrbl/column/column_spec.py,sha256=y4GLFGnpvnCbMAOJser2oKYBlN8Ifc0ILF3Rv5V47jY,1405
|
|
51
|
+
tigrbl/column/field_spec.py,sha256=bXG2oioTEF3G5UyXL9MqWo_SGpHz1EJui5HfIoo0FBs,1223
|
|
52
|
+
tigrbl/column/infer/__init__.py,sha256=EBrWe1J50A-xKPE6CIN1SbJ4d27aqwjOQGyNqWOi_Ic,367
|
|
53
|
+
tigrbl/column/infer/core.py,sha256=zd0tlVffsUVYynuY-J5OXQu1OLEk8M3iILhcubyls-0,2559
|
|
54
|
+
tigrbl/column/infer/jsonhints.py,sha256=IBoNQJUKIIpZdwrYfsKQUA1djHC37XPm8mE-crn1qCM,1659
|
|
55
|
+
tigrbl/column/infer/planning.py,sha256=-Iuruex37A3z-n7Nw4kI_Y40mXLOoatY_lPnLtEDHyI,4319
|
|
56
|
+
tigrbl/column/infer/types.py,sha256=EOyPYKQgpmwVxCapiDlxPwVvEmqsXN8AMOpoRyAzpFQ,2683
|
|
57
|
+
tigrbl/column/infer/utils.py,sha256=J8VcLGA-KXjy3IJ2ROQ1alyfYP9qj8ukb5Z3IMvasi4,1532
|
|
58
|
+
tigrbl/column/io_spec.py,sha256=qwXYiVDf2ar5zaF7zoFoLxqbvlXr2cUQEFXXibpgLOU,4079
|
|
59
|
+
tigrbl/column/mro_collect.py,sha256=jAmt-trA95xxcs5SOjwA3sxh9J_MAXDlVFSbpTcyla0,2084
|
|
60
|
+
tigrbl/column/shortcuts.py,sha256=a6ns1Y5zdbgzzKeUDZq86ejV2la_HZVHmLSgWucPxKc,2606
|
|
61
|
+
tigrbl/column/storage_spec.py,sha256=U19K6QlELQ9tTyxEA5xRWEcjCcIHcb9-iRfDwluPl_8,2396
|
|
62
|
+
tigrbl/config/__init__.py,sha256=DwpSnn0f0I2dAhIMwm1u8MOrvd04syKIc96OFCk-v-o,455
|
|
63
|
+
tigrbl/config/constants.py,sha256=QHFWpMfp8iqK0PZNhFDCatQZjv4kJDbHHGsPb5MqnMw,9856
|
|
64
|
+
tigrbl/config/defaults.py,sha256=W-5Aj1KLJWG6yhM4woDTPSAZhfNvGUX9Bb8u56bqKp0,1944
|
|
65
|
+
tigrbl/config/resolver.py,sha256=166-anq4FEhpSvOXePfDcG7Ot0v2iMNSKYP-y4JO3Aw,10301
|
|
66
|
+
tigrbl/core/__init__.py,sha256=l-Ou_wKS46YCQvv7I_qnJHeVKRCFDhDYhdug0JX57M8,927
|
|
67
|
+
tigrbl/core/crud/__init__.py,sha256=z8Uxbm9tXUGcpEB-T6pZUYlgzzkmUJeFKO74jg2ZgQw,581
|
|
68
|
+
tigrbl/core/crud/bulk.py,sha256=MIGJ-ckijEIGv3IuJeRdikIk9E0OiqJ0PCOR_6KVHxY,5487
|
|
69
|
+
tigrbl/core/crud/helpers/__init__.py,sha256=g8VslEOv5zDYbAtzO5bPLsSqqf89tSw6ncJdqrInv4c,1716
|
|
70
|
+
tigrbl/core/crud/helpers/db.py,sha256=sv402IrCYw-iHFTWvJ5xT0j6F-q87z53GVyTM0NZ8qc,2869
|
|
71
|
+
tigrbl/core/crud/helpers/enum.py,sha256=ebmnsS4JlOlvlj0vbABvxLh0gq2IHF6rG0dDPndgi0Q,3010
|
|
72
|
+
tigrbl/core/crud/helpers/filters.py,sha256=9GPgaHNYNhCSxUWA3QsAC9078fHU5Ws2-qnYR-0AIEA,4896
|
|
73
|
+
tigrbl/core/crud/helpers/model.py,sha256=D3WMwlEZ1v-_Ex3SLpfRUi7O2teMnLswR1bu7ZCDrUY,4072
|
|
74
|
+
tigrbl/core/crud/helpers/normalize.py,sha256=cAB8KAF-q1JcEfosrXkZMh51zgYMWX-P3lpz5j3RMpc,2940
|
|
75
|
+
tigrbl/core/crud/ops.py,sha256=6BM04CVc5PT6TFPYYnQgRwhuaE8q2rI3zZtoeVqP2KA,7953
|
|
76
|
+
tigrbl/ddl/__init__.py,sha256=C9RQLef1l5XCE96CxCs0pN24fNATvOglK1zRYE7BdKY,11352
|
|
77
|
+
tigrbl/decorators.py,sha256=U4iss3iN--4PPGJ90doAcYn4WuDx1dQMw-5Ar4SE7TU,445
|
|
78
|
+
tigrbl/deps/__init__.py,sha256=yzhFPLJX8eXMIV41ar6IXh6ZXdjSlZ-ZYA_FKl-ZxFY,795
|
|
79
|
+
tigrbl/deps/fastapi.py,sha256=qyRcu1c5Xy3RUgNEUxizxQbaZ8i4EdnBmQwJPDBdbCo,1181
|
|
80
|
+
tigrbl/deps/favicon.svg,sha256=C_S8UPLuLx4QIdP84OpzKw7IiwWjrHIzyKotoUKRLB4,195
|
|
81
|
+
tigrbl/deps/jinja.py,sha256=dau8Y2v9UY3sptLhzP_8MpjKwlU-34_QraNgQXr4OCM,698
|
|
82
|
+
tigrbl/deps/pydantic.py,sha256=cLReo5Gd3V7TDJ9L3sMOFD93FWMd5QnZZoCaOJ6ip14,497
|
|
83
|
+
tigrbl/deps/sqlalchemy.py,sha256=0gdeq-l-5XgMVpykrSQ-NPA-sojIaVoa1BG_NSjojjQ,2392
|
|
84
|
+
tigrbl/deps/starlette.py,sha256=I90mc0aLxDymtf0mne2tT03rOLpfS7F9x_bYLVIeJGs,1001
|
|
85
|
+
tigrbl/engine/__init__.py,sha256=l6-YpvHC7OzGkqP5jbl70I0okjJSyDrcaWyC5faEOFo,623
|
|
86
|
+
tigrbl/engine/_engine.py,sha256=HVTVKpZJyH086cFXBwNsl_-cc9_avMFUI_RyhnwjnqA,4098
|
|
87
|
+
tigrbl/engine/bind.py,sha256=BsUYNfUCPAp4o0Lvb-_-wmvrRptmucGbzs2Janm2A8Y,1065
|
|
88
|
+
tigrbl/engine/builders.py,sha256=HN_zDN-aFA3LzAjNKrByWY_LdNhgkbdGVbgjgkxO0Wk,8599
|
|
89
|
+
tigrbl/engine/collect.py,sha256=aYJZckPRoEM2P7glpikpcg5tvDDZuOliwxeik-C5KNs,3808
|
|
90
|
+
tigrbl/engine/decorators.py,sha256=A1aTBDgQqoY4ZP-8pHcPCqCYAsXLmX3_JZdsAA-Ipfk,3836
|
|
91
|
+
tigrbl/engine/engine_spec.py,sha256=eDBRRjRDRKcYyZfSTcH7OuU222RmgPu3j0bIkTtiZdQ,9222
|
|
92
|
+
tigrbl/engine/resolver.py,sha256=3Ds6WEgFoIYcIDyaHprUKPCZ6CYWW0JLG3iqlSTPNEQ,7664
|
|
93
|
+
tigrbl/engine/shortcuts.py,sha256=BR_u3wsrkp83vup_jtNUTp5a2LrSLKxFj1vYTVIYsL4,6519
|
|
94
|
+
tigrbl/hook/__init__.py,sha256=PtUNKKLQ1CAdkxFQgymutDkNzeyeVOfnMq2jQ_fbKIs,448
|
|
95
|
+
tigrbl/hook/_hook.py,sha256=goaEq7ktHjin7bjrFKdynCjnVkG59Pnxe6XzPEABFJY,470
|
|
96
|
+
tigrbl/hook/decorators.py,sha256=viSivJWnpBUAIRdnqhBO-tf22g9OfgYsCX4V9XEKkBg,705
|
|
97
|
+
tigrbl/hook/hook_spec.py,sha256=TSfLlS94WtvWNsiXtXLChkxkHAvzF87Ngy1P4WWH90E,497
|
|
98
|
+
tigrbl/hook/mro_collect.py,sha256=ueh-uFc6qSP_zR2DARIuXiRIRV-OZggwx3yptbatnHI,3257
|
|
99
|
+
tigrbl/hook/shortcuts.py,sha256=3zrTdvWONwObv4jG4SJcQe8XgP4cYyyVg8YYZAIxcEo,957
|
|
100
|
+
tigrbl/hook/types.py,sha256=evapWYQJQXJBvVND2tJ8b6_BIIj4DE8198M3VC6B43c,2063
|
|
101
|
+
tigrbl/op/__init__.py,sha256=hv6luL9DxRJjFf9kxDR4-8FTbMrTWp-grp4qMeWkWk8,863
|
|
102
|
+
tigrbl/op/_op.py,sha256=FLAr8R5ZGcbBu56d_BE4WKwvDHIIxEwMTEzCSMy1H9s,932
|
|
103
|
+
tigrbl/op/canonical.py,sha256=IimMmEMzVVC2D5sgMODVB1E0HJwZdHYgftZLaUkNUKU,751
|
|
104
|
+
tigrbl/op/collect.py,sha256=pN33D4ZacoaJkofSsjyo6p1Cg0EnIuQVMys810nANdI,254
|
|
105
|
+
tigrbl/op/decorators.py,sha256=6YvoFWvrpaD_pMKVwQkkjs_mtm6K-AD5PQot0Q9CRjM,7071
|
|
106
|
+
tigrbl/op/model_registry.py,sha256=RImaObQhtFvKoiPJ0WJLdh9SRozDTF9silRsOg6KNdo,9345
|
|
107
|
+
tigrbl/op/mro_collect.py,sha256=Y50Z90VE4ABopq3v3PKfUdx2oYCStWWHrCZRI38fOHY,3259
|
|
108
|
+
tigrbl/op/resolver.py,sha256=iGnBWrjQWRFov-D3gVizGcZN7gCq_k2liZd5RwWBZWg,6700
|
|
109
|
+
tigrbl/op/types.py,sha256=Q_OScUhbjV48V2VcyLQ248s5La0OjPCaGu2dIUR7o88,4880
|
|
110
|
+
tigrbl/orm/__init__.py,sha256=oQVk8swfAop9oNNC-WVf0_OdAmXRf7EjqIQfW7w_fLA,61
|
|
111
|
+
tigrbl/orm/mixins/_RowBound.py,sha256=YSdiwpl1NlitHKkCUcStc6hc7QHgMTK5ybp8epxf2wg,3054
|
|
112
|
+
tigrbl/orm/mixins/__init__.py,sha256=X1qWzDcr_wSNNOo7JJ_hpHGR_tO1HsqDF7vHh6N-xNs,1914
|
|
113
|
+
tigrbl/orm/mixins/bootstrappable.py,sha256=cIk20fMSHP3vd3AQLhAlHTTD3ds5X4JLMMZY8f2L1CM,3834
|
|
114
|
+
tigrbl/orm/mixins/bound.py,sha256=joBHzSF6fg5Pc7hNRPJF1q_vcSHJrC3TPUtL-EWdvHE,1332
|
|
115
|
+
tigrbl/orm/mixins/edges.py,sha256=cqTa-R3n3ordDt52gGj49pNnchJ8i8NJ0053HKuWQ58,854
|
|
116
|
+
tigrbl/orm/mixins/fields.py,sha256=CfQqRD949s7819-4487fYsdWbHDAbL4JXYaZfMdOHYE,3657
|
|
117
|
+
tigrbl/orm/mixins/hierarchy.py,sha256=pEYsd743BXhPIyhHvvFganoWRK_a4mLloGLCBs-4li8,1411
|
|
118
|
+
tigrbl/orm/mixins/key_digest.py,sha256=X8hg0Pk9SnDwKEYzLS3bV39goznTYd7Kj0sWFmhzG1I,1421
|
|
119
|
+
tigrbl/orm/mixins/lifecycle.py,sha256=-t8xlLX4et6Z5avUlzYkrXZ-Qzu4Q0HVUEuCWBUo31c,2601
|
|
120
|
+
tigrbl/orm/mixins/locks.py,sha256=NKOwV14zJ4lB5XC0yxoSmefqhiWDqMyJXWMI-QCn5QA,1262
|
|
121
|
+
tigrbl/orm/mixins/markers.py,sha256=oa4_csrgdiX3uHX_IgpShxyEkmUkexJdJIrz1qMB46E,210
|
|
122
|
+
tigrbl/orm/mixins/operations.py,sha256=XDeoeF003b2GymFTzj5_olkgzrjrFYfOjPi3jQrYziQ,1835
|
|
123
|
+
tigrbl/orm/mixins/ownable.py,sha256=v41-KWrw5dlnLPOPxP7BDerg1Cd3B4iD5sM-ejGGnZ4,11304
|
|
124
|
+
tigrbl/orm/mixins/principals.py,sha256=YIHsEgAcckQQlNggC5xD3XxApINakqDLt3rMLuk2s7w,2746
|
|
125
|
+
tigrbl/orm/mixins/tenant_bound.py,sha256=op07P55fTpM94CctF03l2M6Ozkge1xrX1upHN5h_CAs,10095
|
|
126
|
+
tigrbl/orm/mixins/upsertable.py,sha256=UtNv7mFZUyrdCQQSrei4_jOFBSVfozuhaEtK171G6T8,3800
|
|
127
|
+
tigrbl/orm/mixins/utils.py,sha256=_sTN4CnEkyEeXgTRr_VHsFtG33Mimm1EFoFhpPutGQo,1257
|
|
128
|
+
tigrbl/orm/tables/__init__.py,sha256=3NtStrO9wE2YulZkrVvhrcKWmkTyfZK2n-J-urA3_JU,1929
|
|
129
|
+
tigrbl/orm/tables/_base.py,sha256=8z6nAdogoEKpi0gvBelAL7jsRkT_rn_lrqGLCsjrbN0,231
|
|
130
|
+
tigrbl/orm/tables/audit.py,sha256=B7tpzA0-ZotPL9V4trCb7Kiwmwl5HZz3W-WF867cJRs,1416
|
|
131
|
+
tigrbl/orm/tables/client.py,sha256=hM1qZ3QvDX8ORmCA02FbwdYI_B9cIHNrdvbspZJpXLI,761
|
|
132
|
+
tigrbl/orm/tables/group.py,sha256=0_Fc4jykJPSEM5aCHeH0dB4U09OGpxa2drA9LACOB7A,624
|
|
133
|
+
tigrbl/orm/tables/org.py,sha256=gL0ykDQuQPOw1gYui5ZcDPKKLwuIUMtS0N7OrtHowIQ,640
|
|
134
|
+
tigrbl/orm/tables/rbac.py,sha256=RKLusnX2TwKbO44vIHsg5XdoW8zYm7hoBPJzBuWWXkc,1919
|
|
135
|
+
tigrbl/orm/tables/status.py,sha256=Eb73GsibghSqqY_lzhsO6OxQSYvlfRTc0PnO38nDtYw,3578
|
|
136
|
+
tigrbl/orm/tables/tenant.py,sha256=bTNkg36A1EeRX2hQuRCUr6J78RkFdm0BgUGHNWCnOHI,450
|
|
137
|
+
tigrbl/orm/tables/user.py,sha256=J0ix0hb8UgcCjoAQhSLn-XN8HR8TTt3mmlwH0bAjTJs,789
|
|
138
|
+
tigrbl/response/README.md,sha256=SVfrSPT7RuZMy2JmyxL9S3bOvhGdDsZQANH-grH37FI,1758
|
|
139
|
+
tigrbl/response/__init__.py,sha256=Y26CVXUlk7zvcP7oorZHxbJ5D0-KC_LcDIxQjw0QlB4,803
|
|
140
|
+
tigrbl/response/bind.py,sha256=fj5deXrOBn-jauvW0j2yNdVziOBvPOvbOklFQFeoyYk,293
|
|
141
|
+
tigrbl/response/decorators.py,sha256=iOBBME2jSvuS_KV9zDCQKBQDNg80QLFtYboJehwqvRM,940
|
|
142
|
+
tigrbl/response/resolver.py,sha256=ZCcQiBxzZuC_iteOQVcQdLBQmY8wSSJ2HYryb2YzzUA,2532
|
|
143
|
+
tigrbl/response/shortcuts.py,sha256=xtvfKahPWSWQzyEMAHLPuPFu_129bNg65eZDHQegD_U,3906
|
|
144
|
+
tigrbl/response/types.py,sha256=110etKRHl0jnnhwFPCWwl6DawQ7cOel1yq4lo3r9KIk,1329
|
|
145
|
+
tigrbl/rest/__init__.py,sha256=XmCGc3HdPqRJfzehJj1MfhpJFlheDMMlVSZz1EE2yZQ,824
|
|
146
|
+
tigrbl/runtime/README.md,sha256=0sCqYWNPcdG6tFA7fVyri2DVbuTsiw3T5WwnTzF-i78,5956
|
|
147
|
+
tigrbl/runtime/__init__.py,sha256=BDNx_j144HZmcsDP9XT4WWgm1Q0aaigiXXRA22XBu90,449
|
|
148
|
+
tigrbl/runtime/atoms/__init__.py,sha256=eITXXXADt8QgidEd90t2Mwws4126EY1XBn-pck_TejI,3571
|
|
149
|
+
tigrbl/runtime/atoms/emit/__init__.py,sha256=YgytttKDl157MmmL47vPHOhprjxwQFl4Isg1-wTnHsI,1481
|
|
150
|
+
tigrbl/runtime/atoms/emit/paired_post.py,sha256=z1RpiKDqCsSJPvNTUEivHr80B3c2uvCWrqg0b-k_GN8,5859
|
|
151
|
+
tigrbl/runtime/atoms/emit/paired_pre.py,sha256=jRMug4PGdV1MR242svC6_nkkHk-e1ysVdvJTRtj0SGI,4047
|
|
152
|
+
tigrbl/runtime/atoms/emit/readtime_alias.py,sha256=zKP79N2FzrMP3k8XwEkXR92lYvTT8DzE8b-Umpd5Fsc,4153
|
|
153
|
+
tigrbl/runtime/atoms/out/__init__.py,sha256=FlJz0XjZG2D38P-jznuvmT4bvwJR0NnsssrRrKnDyAU,1220
|
|
154
|
+
tigrbl/runtime/atoms/out/masking.py,sha256=oWTCCtG5_tfSHcQmD2cKSh29vnZLbkeb4Xbu1Gs3W8g,4935
|
|
155
|
+
tigrbl/runtime/atoms/refresh/__init__.py,sha256=SiCfK5eb7be5Z8LF6CoEnx14pMfhGf1DvIG_w2G_Or4,1243
|
|
156
|
+
tigrbl/runtime/atoms/refresh/demand.py,sha256=FCWXiHzehdy1W7YOn2-D3bIXGBFHOZuP4NEhFS_PD3w,5243
|
|
157
|
+
tigrbl/runtime/atoms/resolve/__init__.py,sha256=xRdUnSxI5k3mUgVbx9VBRyrbJM3uKeHS22R8BWMfhc4,1363
|
|
158
|
+
tigrbl/runtime/atoms/resolve/assemble.py,sha256=Pzs8Pm_8trAB17saAfezgZUM4IPk4kIMrahZKgFRKac,6301
|
|
159
|
+
tigrbl/runtime/atoms/resolve/paired_gen.py,sha256=Jj4v5Wg3zfdv3omv-3DG8c93I6ynEbxHhJFza_SE-Mc,5676
|
|
160
|
+
tigrbl/runtime/atoms/response/__init__.py,sha256=spdjtuxvJJlKDdslf5G9rBSTr5Do_eAHyr3wQbSWxro,545
|
|
161
|
+
tigrbl/runtime/atoms/response/negotiate.py,sha256=G6QPl_U1Oz8csFpMitSlvzAvUsVLzc-fo-G3eJX2jak,913
|
|
162
|
+
tigrbl/runtime/atoms/response/negotiation.py,sha256=G2wy6Enr93nuLJVELFdY5W6J14G6gsEvHZi64YSbp-o,1125
|
|
163
|
+
tigrbl/runtime/atoms/response/render.py,sha256=uo3laUH8d4-9dCP4LevfxeysLCs0UxZDjSJuznHPpsc,970
|
|
164
|
+
tigrbl/runtime/atoms/response/renderer.py,sha256=gMTh-QUiIx-65-qMDCe-Zjl6irHkhSxytAkgvdYDE54,2914
|
|
165
|
+
tigrbl/runtime/atoms/response/template.py,sha256=iTonG7AAQpOYfpOuh8LCsKEFNLOTYCFI4zt6Ih9NygE,1240
|
|
166
|
+
tigrbl/runtime/atoms/response/templates.py,sha256=htEpY9MkuSk3Lb2w6oH2-HZt5htzwZMFLds8zX1GmJM,2789
|
|
167
|
+
tigrbl/runtime/atoms/schema/__init__.py,sha256=uFxw3EUDHar1MyULDzWEASDJTrPlA-EMvKv3C5hZCdc,1370
|
|
168
|
+
tigrbl/runtime/atoms/schema/collect_in.py,sha256=G0j_3gT1w-Weej07m9qpKYGYltOxQFjekh0zMIBhxug,545
|
|
169
|
+
tigrbl/runtime/atoms/schema/collect_out.py,sha256=QRmeqvcdxagNhkideRelBkcxD8mXIQuZZMy16piM6og,534
|
|
170
|
+
tigrbl/runtime/atoms/storage/__init__.py,sha256=9E4vP2faX8yrsQqaKmQpW-i2VV8WqG14YN7DlnDW4co,1258
|
|
171
|
+
tigrbl/runtime/atoms/storage/to_stored.py,sha256=D2q6e2pI2e45jmN-XhfDy7YQnucAzCN5ioYKqe5jS5E,7056
|
|
172
|
+
tigrbl/runtime/atoms/wire/__init__.py,sha256=ySBrPU6uxnaMu0df-T_OMLQGGLMdxDT-01tBzzDinlQ,1620
|
|
173
|
+
tigrbl/runtime/atoms/wire/build_in.py,sha256=fxyGK0g3VgHDMnp-O_gwY1GyT_sKlroPObS9Gfa9jxM,6089
|
|
174
|
+
tigrbl/runtime/atoms/wire/build_out.py,sha256=7yagqrkmNHE0BoB-Ol_vUJlXH0QBSvjqrDakYMio7vA,3145
|
|
175
|
+
tigrbl/runtime/atoms/wire/dump.py,sha256=_9279VdmeLCP6FWDA1U8DEeS4hFjdy9D8feIkq0XWt0,6993
|
|
176
|
+
tigrbl/runtime/atoms/wire/validate_in.py,sha256=Kei19NVdedbIAR9Bnpj9mdL1uZRMA3BTBB1jTBF-AJs,8441
|
|
177
|
+
tigrbl/runtime/context.py,sha256=cmBbsCMnl-TrmorireFkGUcTR8z_d9rLWwtvbxNIMNg,7342
|
|
178
|
+
tigrbl/runtime/errors/__init__.py,sha256=oJ5x2xNLMEkzJEH3vkh5K8VLfJcSdp8fON5G4kj--aw,1296
|
|
179
|
+
tigrbl/runtime/errors/converters.py,sha256=4G-7PziCdQ9hjqWoflJPFZ7U3qwr2z5lCnpdgunqIRg,7642
|
|
180
|
+
tigrbl/runtime/errors/exceptions.py,sha256=qzfmIiB1_YkEBTe_CtyK3X9qaRvACC59F_hozjjusZk,3002
|
|
181
|
+
tigrbl/runtime/errors/mappings.py,sha256=FRXSeSsK6vLVZZTiDdwfuVF0wqwJ4SPh7tq6FrkLOoE,1832
|
|
182
|
+
tigrbl/runtime/errors/utils.py,sha256=gVFpIPSFpTrzAE2Al0v21v9a7DYQAOlTqk9DIxoKIv8,4610
|
|
183
|
+
tigrbl/runtime/events.py,sha256=uv2XyftSDtIwkg4MbaMAnzm3dNC5eC3OdFyUN5-U5ak,7295
|
|
184
|
+
tigrbl/runtime/executor/__init__.py,sha256=JuFfQo0xo9_C8XW014vdEtMvzNKaugXhLg8tWToKz1Q,218
|
|
185
|
+
tigrbl/runtime/executor/guards.py,sha256=HiE9J_Y-AslRJZYBrjZmGFecq9Tx4nn6HMqL1jrezLY,4210
|
|
186
|
+
tigrbl/runtime/executor/helpers.py,sha256=PU7Bj7VTdGaldNYuBRsrV4408G4UqxJIWwPUwtUgNaA,2239
|
|
187
|
+
tigrbl/runtime/executor/invoke.py,sha256=IUSkjXXqRDX1cOmDcpXloKHgwI_HRYW2SsqOrKheB8U,4754
|
|
188
|
+
tigrbl/runtime/executor/types.py,sha256=oxgyv5EI2hs2MixjXQAdhNu5nWpQ2F0kXC6pXNU_pSE,2386
|
|
189
|
+
tigrbl/runtime/kernel.py,sha256=BEaBa_EMl_s9J5KqtzB2KBVr1tM1NAANNUtunLi66dU,22441
|
|
190
|
+
tigrbl/runtime/labels.py,sha256=aBXx65lMPlR60wXH4M_xeuXN4w3z07ep6NxICAiSy68,13134
|
|
191
|
+
tigrbl/runtime/opview.py,sha256=8Fa-Ycc_cSTTvvo-ZaJ7OpmGbzZObiZ_Yg8BJOJi4oU,2727
|
|
192
|
+
tigrbl/runtime/ordering.py,sha256=CtV0XCTAoucv1v-opylWJSQP_bDW-_qfU1GqLs9h9_g,9533
|
|
193
|
+
tigrbl/runtime/system.py,sha256=Kv9xSVNVAfp6pVU_RpRSXJDA-OIUmP9IsFT6FI09aMk,10868
|
|
194
|
+
tigrbl/runtime/trace.py,sha256=67XPisJg7t5jpXghfYRdJK7hES89Jk_TQUYb2u2cDVk,9865
|
|
195
|
+
tigrbl/schema/__init__.py,sha256=PM7xsbgM9L98WnVFek8_dJ_Z3V1m6JometlRLjrgu2w,967
|
|
196
|
+
tigrbl/schema/_schema.py,sha256=Xf_50TOtldOa4pYM6pPBYotNqNbpq91xQJP5p8S4DwI,557
|
|
197
|
+
tigrbl/schema/builder/__init__.py,sha256=9RfxmNhGIIm4zqM-iKks_J8fo6SHRBeZznHz_1lbgUk,482
|
|
198
|
+
tigrbl/schema/builder/build_schema.py,sha256=2paI62EZ5_Q00Axnz67R63nSI7HRCqG-BQ5ncosVcDI,7924
|
|
199
|
+
tigrbl/schema/builder/cache.py,sha256=1OwjjURIpQWRy01JCdzRUzyIUeWWCjLYtmy5XHW8wKE,521
|
|
200
|
+
tigrbl/schema/builder/compat.py,sha256=KdvpV_lYWrWd9qDoGUBRrl5uXAHXMnXrF9cJW8N86pI,402
|
|
201
|
+
tigrbl/schema/builder/extras.py,sha256=t-94VjVULlTDFsRDJ3IBkBUFYkwZbWajjS1JIyTExUM,2526
|
|
202
|
+
tigrbl/schema/builder/helpers.py,sha256=_YfZh1-bgfWrQ912eq77M6nG4XsrNY_qFODtUux1CgQ,1386
|
|
203
|
+
tigrbl/schema/builder/list_params.py,sha256=DL97zDb271FtzBXk0FTcDzrnrRzeQorkdYNP8kuxsG8,3537
|
|
204
|
+
tigrbl/schema/builder/strip_parent_fields.py,sha256=i2H3gzbcbhZT0Ddq0Uj9ESN_Bsfc-c54gRzXROtjjiI,2250
|
|
205
|
+
tigrbl/schema/collect.py,sha256=4mp8XHyR98x1uBm5mTPNRj7mEJyGDnJ3hJB_PMJkvm0,1864
|
|
206
|
+
tigrbl/schema/decorators.py,sha256=HISPz7aeTWx9kG8Z5OW0UddY-wXM3ICpdLn98wIUx1w,2171
|
|
207
|
+
tigrbl/schema/get_schema.py,sha256=_yMadRKoQUA37yMfS98xQpb1jIQeOBelbnUKa_b5GHQ,2572
|
|
208
|
+
tigrbl/schema/schema_spec.py,sha256=un30EyrHnzXVi5O8Q4yUHzSFrBERhVPHxrMEyxJpYW8,429
|
|
209
|
+
tigrbl/schema/shortcuts.py,sha256=ExUWm51DBaN99FjO3_A59imzhWV-0QOJIpresWSlUGk,921
|
|
210
|
+
tigrbl/schema/types.py,sha256=-F7OkmqGE9Dot7DhiLe1_EBq27ei_bLUqP1qJj0KKeQ,803
|
|
211
|
+
tigrbl/schema/utils.py,sha256=KEAljLM2eWV5nTS-fDod4fTLVOsUVqf2VQ39mwMSV1w,4741
|
|
212
|
+
tigrbl/shortcuts.py,sha256=wa3AlX4r4IbzAkxANeRsIbFdy_zu0s6xFdTKZsAohyM,712
|
|
213
|
+
tigrbl/specs.py,sha256=SBGeNuzmyU4t0TyrDQlZg_MElC7B6i--ghGEgSIX3vU,1163
|
|
214
|
+
tigrbl/system/__init__.py,sha256=tGe9YztVgMaTFYnt_2MbUDVeqQ7v5N4DgSfeE1OemUY,246
|
|
215
|
+
tigrbl/system/diagnostics/__init__.py,sha256=QtQfmaE7LreWKH2Zggmh8kIAilzhF1gQYdhNOVAGuCE,717
|
|
216
|
+
tigrbl/system/diagnostics/compat.py,sha256=g3rzIWKPvspdaDRlwnFzcbsmORfbo1Bjwa1VTrf0Bco,990
|
|
217
|
+
tigrbl/system/diagnostics/healthz.py,sha256=hB-FX6DUJYOlQGdF-5Skb0bspO8Hi4IEOFg7AxcsrV0,1319
|
|
218
|
+
tigrbl/system/diagnostics/hookz.py,sha256=by1yszQqiktf3LXb_QEEbVO6u64l_8E4bk0_Z7_mSTw,1811
|
|
219
|
+
tigrbl/system/diagnostics/kernelz.py,sha256=MuM7-95yaIu28nZ3KOWYhfbYeb489Ep6ucmRTqL3JMA,433
|
|
220
|
+
tigrbl/system/diagnostics/methodz.py,sha256=rZ9QpNJMxH_gH-zkSv6vK-qw3ZLRLEImP32Ki-JmyC4,1577
|
|
221
|
+
tigrbl/system/diagnostics/router.py,sha256=5RAv6LPoN4luGwIPnYGak66uT9FslYPc-d_GKqc4S8c,1854
|
|
222
|
+
tigrbl/system/diagnostics/utils.py,sha256=qxC8pUNK2lQKh5cGlF-PSFA-cfJFLlAHW0-iEosvPgg,1172
|
|
223
|
+
tigrbl/table/__init__.py,sha256=yyP9iZBUJh-D7TCy9WQIvMXKL3ztyX-EXdTK4RTE7iw,207
|
|
224
|
+
tigrbl/table/_base.py,sha256=TLov-nRcvg-qiAyYflP_6o5PNeIvixNrDE_eRrEULxo,8790
|
|
225
|
+
tigrbl/table/_table.py,sha256=B7ft2SMnbp3aTWKO44M4EWTHmzFKyQlpdj-3QULRaGk,1740
|
|
226
|
+
tigrbl/table/mro_collect.py,sha256=JwL0zAeLNUgJcgd2JuLKcbFc806zBguhFqpCkeZyzRw,2027
|
|
227
|
+
tigrbl/table/shortcuts.py,sha256=-IZAZyMTsiCdKV0w7nq1C2YBsB6iE_uNGJb-PatlO8I,1716
|
|
228
|
+
tigrbl/table/table_spec.py,sha256=dvilrGWX7fVc6ThTbAqJKxxl3r6_MKNFY0cs_wuyvC8,1001
|
|
229
|
+
tigrbl/transport/__init__.py,sha256=Hq2yob_mvMOQdd8Ts04-rzL282rRpIXo2Prortk0fL4,1896
|
|
230
|
+
tigrbl/transport/jsonrpc/__init__.py,sha256=YZKk9W1GSPkx98G0cshEcDKLWvmeJGjW90PeTJ0z_r4,438
|
|
231
|
+
tigrbl/transport/jsonrpc/dispatcher.py,sha256=Eb-M_0n3npAWkw5NSIDDFklgj_J3p8-46yaXPtaiktI,12620
|
|
232
|
+
tigrbl/transport/jsonrpc/helpers.py,sha256=oyqx36m8n7EofciPVvTEM9Pz1l51zJwsI224AXkE7q8,3010
|
|
233
|
+
tigrbl/transport/jsonrpc/models.py,sha256=omtjb-NN8HyWgIZ5tHafEsbwC7f1XlttAFHFA41Xn2k,973
|
|
234
|
+
tigrbl/transport/rest/__init__.py,sha256=AU_twrP0A958FtXvLSf1i60Jn-UZSRUkAZ1Gd2TeYaw,764
|
|
235
|
+
tigrbl/transport/rest/aggregator.py,sha256=V1zDvv1bwpNyt6rUPmEUEV5nORjb5sHU5LJ00m1ybYY,4454
|
|
236
|
+
tigrbl/types/__init__.py,sha256=P1xW-fVGrbSfScKZUMZ6nVKIUdIUndEkecAsbbOEKhU,4153
|
|
237
|
+
tigrbl/types/allow_anon_provider.py,sha256=5mWvSfk_eCY_o6oMm1gSEqz6cKyJyoZ1-DcVYm0KmpA,565
|
|
238
|
+
tigrbl/types/authn_abc.py,sha256=GtlXkMb59GEEXNEfeRX_ZfNzu-S4hcLsESzBAaPT2Fg,769
|
|
239
|
+
tigrbl/types/nested_path_provider.py,sha256=1z-4Skz_X_hy-XGEAQnNv6vyrfFNsPIvlhBqf457Sjc,609
|
|
240
|
+
tigrbl/types/op.py,sha256=-kdDABEyIBEAMMtatOXVPeMEaGFUiXtJSStZkNu3cnA,769
|
|
241
|
+
tigrbl/types/op_config_provider.py,sha256=tYH_py9niHvLQF9c9OD13Wt8U4hoYxUatJO_Zp5Cs8Q,551
|
|
242
|
+
tigrbl/types/op_verb_alias_provider.py,sha256=_8Ix5bsD0PNKBsnn7k7KtO0JHmTSrm4Xlvv2xDTSEv8,1052
|
|
243
|
+
tigrbl/types/request_extras_provider.py,sha256=JOIpzx1PYA2AYYvkMiXrxlwpBLOPD2cQaPvaA0lzQck,646
|
|
244
|
+
tigrbl/types/response_extras_provider.py,sha256=sFB0R3vyUqmpT-o8983hH9FAlOq6-wwNVK6vfuCPHCg,653
|
|
245
|
+
tigrbl/types/table_config_provider.py,sha256=EkfOhy9UDfy7EgiZddw9KIl5tRujRjXJlr4cSk1Rm5k,361
|
|
246
|
+
tigrbl-0.3.0.dev3.dist-info/LICENSE,sha256=djUXOlCxLVszShEpZXshZ7v33G-2qIC_j9KXpWKZSzQ,11359
|
|
247
|
+
tigrbl-0.3.0.dev3.dist-info/METADATA,sha256=nZp7ZM_2RHObTozW_arwqb7yNrFLPTer-CPJVyJcNUE,17194
|
|
248
|
+
tigrbl-0.3.0.dev3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
249
|
+
tigrbl-0.3.0.dev3.dist-info/RECORD,,
|
tigrbl/ExampleAgent.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
print('hello world')
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.3
|
|
2
|
-
Name: tigrbl
|
|
3
|
-
Version: 0.0.1.dev1
|
|
4
|
-
Summary: A tigrbl package
|
|
5
|
-
License: Apache-2.0
|
|
6
|
-
Author: Jacob Stewart
|
|
7
|
-
Author-email: jacob@swarmauri.com
|
|
8
|
-
Requires-Python: >=3.10,<3.13
|
|
9
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
-
Classifier: Development Status :: 1 - Planning
|
|
15
|
-
Classifier: Development Status :: 1 - Planning
|
|
16
|
-
Description-Content-Type: text/markdown
|
|
17
|
-
|
|
18
|
-
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
tigrbl/__init__.py,sha256=I7Sgw63JWmtsNTNAJ0cET75eiBzqR99Sy-nB2IBnx9k,345
|
|
2
|
-
tigrbl/ExampleAgent.py,sha256=k5M447arZSBD2T3_nB6OqmmgqWmkoN5QhwpsutfzwRc,20
|
|
3
|
-
tigrbl-0.0.1.dev1.dist-info/METADATA,sha256=BQeJZH7Sn667kB5_RlYP4EaZ3DsJSlxbV-kLgKWUvoQ,590
|
|
4
|
-
tigrbl-0.0.1.dev1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
5
|
-
tigrbl-0.0.1.dev1.dist-info/RECORD,,
|
|
File without changes
|