tigrbl-base 0.4.2.dev3__py3-none-any.whl → 0.4.3.dev4__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.
@@ -22,6 +22,8 @@ _EXPORTS = {
22
22
  "SchemaBase": "_schema_base",
23
23
  "SessionABC": "_session_abc",
24
24
  "TigrblSessionBase": "_session_base",
25
+ "CrudTableBase": "_table_base",
26
+ "RealtimeTableBase": "_table_base",
25
27
  "TableBase": "_table_base",
26
28
  "TableRegistryBase": "_table_registry_base",
27
29
  "AttrDict": "_mapping_access",
@@ -29,6 +31,9 @@ _EXPORTS = {
29
31
 
30
32
  __all__ = list(_EXPORTS)
31
33
 
34
+ for _symbol in __all__:
35
+ globals().pop(_symbol, None)
36
+
32
37
 
33
38
  def __getattr__(name: str) -> Any:
34
39
  module_name = _EXPORTS.get(name)
@@ -5,7 +5,7 @@ import inspect
5
5
  from typing import Any
6
6
  from typing import Callable, Optional, Sequence
7
7
 
8
- from tigrbl_core._spec.app_spec import AppSpec
8
+ from tigrbl_core._spec.app_spec import AppSpec, normalize_execution_backend
9
9
  from tigrbl_core._spec.engine_spec import EngineCfg
10
10
  from tigrbl_core._spec.response_spec import ResponseSpec
11
11
 
@@ -100,7 +100,7 @@ class AppBase(AppSpec):
100
100
  title=spec.title,
101
101
  description=spec.description,
102
102
  version=spec.version,
103
- execution_backend=spec.execution_backend,
103
+ execution_backend=normalize_execution_backend(spec.execution_backend),
104
104
  engine=spec.engine,
105
105
  routers=routers,
106
106
  ops=tuple(spec.ops or ()),
@@ -133,7 +133,7 @@ class AppBase(AppSpec):
133
133
  title=str(spec.title or "Tigrbl"),
134
134
  description=spec.description,
135
135
  version=str(spec.version or "0.1.0"),
136
- execution_backend=str(spec.execution_backend or "auto"),
136
+ execution_backend=normalize_execution_backend(spec.execution_backend),
137
137
  engine=spec.engine,
138
138
  routers=cls._bind_mapped_children(spec.routers, parent=parent),
139
139
  ops=cls._bind_mapped_children(spec.ops, parent=parent),
@@ -15,5 +15,11 @@ class AttrDict(dict):
15
15
  def __setattr__(self, key: str, value: Any) -> None: # pragma: no cover - trivial
16
16
  self[key] = value
17
17
 
18
+ def __delattr__(self, item: str) -> None:
19
+ try:
20
+ del self[item]
21
+ except KeyError as exc:
22
+ raise AttributeError(item) from exc
23
+
18
24
 
19
25
  __all__ = ["AttrDict"]
@@ -11,6 +11,13 @@ from sqlalchemy import CheckConstraint, ForeignKey, MetaData
11
11
  from sqlalchemy.types import Enum as SAEnum, String
12
12
 
13
13
  from ._datatype_lowering import lower_datatype_to_sqla_type
14
+ from tigrbl_core._spec.table_profile_spec import (
15
+ CRUD_TABLE_PROFILE,
16
+ PLAIN_TABLE_PROFILE,
17
+ REALTIME_TABLE_PROFILE,
18
+ TableProfileError,
19
+ coerce_table_profile,
20
+ )
14
21
 
15
22
  # ──────────────────────────────────────────────────────────────────────────────
16
23
  # Helpers – type inference & SA type instantiation
@@ -342,6 +349,39 @@ def _attach_model_ops_namespace(model: type) -> None:
342
349
  model.opspecs = ops_ns
343
350
 
344
351
 
352
+ def _normalize_table_profile_declaration(cls: type) -> None:
353
+ profile_attr = "TABLE_PROFILE"
354
+ explicit_profile = profile_attr in cls.__dict__
355
+
356
+ legacy_attrs = {
357
+ "DEFAULT_CANON_VERBS",
358
+ "should_wire_canonical",
359
+ "__tigrbl_defaults_mode__",
360
+ "__tigrbl_defaults_include__",
361
+ "__tigrbl_defaults_exclude__",
362
+ "__tigrbl_ops__",
363
+ "OPS",
364
+ }
365
+ present_legacy = sorted(name for name in legacy_attrs if name in cls.__dict__)
366
+ cfg = cls.__dict__.get("table_config")
367
+ if isinstance(cfg, dict) and (
368
+ "binding_profiles" in cfg
369
+ or "default_bindings" in cfg
370
+ or "default_binding_profiles" in cfg
371
+ ):
372
+ present_legacy.append("table_config.binding_profiles")
373
+
374
+ if explicit_profile and present_legacy:
375
+ raise TableProfileError(
376
+ f"{cls.__name__} declares TABLE_PROFILE and legacy table default "
377
+ f"authority {', '.join(present_legacy)}"
378
+ )
379
+
380
+ value = cls.__dict__.get(profile_attr, getattr(cls, profile_attr, PLAIN_TABLE_PROFILE))
381
+ normalized = coerce_table_profile(value)
382
+ setattr(cls, profile_attr, normalized)
383
+
384
+
345
385
  # ──────────────────────────────────────────────────────────────────────────────
346
386
  # Declarative Base
347
387
  # ──────────────────────────────────────────────────────────────────────────────
@@ -349,8 +389,11 @@ def _attach_model_ops_namespace(model: type) -> None:
349
389
 
350
390
  class TableBase(DeclarativeBase):
351
391
  __allow_unmapped__ = True
392
+ TABLE_PROFILE = PLAIN_TABLE_PROFILE
352
393
 
353
394
  def __init_subclass__(cls, **kw):
395
+ _normalize_table_profile_declaration(cls)
396
+
354
397
  # 0) Remove any previously registered class with the same module path.
355
398
  try:
356
399
  reg = TableBase.registry._class_registry
@@ -540,4 +583,14 @@ class TableBase(DeclarativeBase):
540
583
  return getattr(self, key)
541
584
 
542
585
 
543
- __all__ = ["TableBase"]
586
+ class CrudTableBase(TableBase):
587
+ __abstract__ = True
588
+ TABLE_PROFILE = CRUD_TABLE_PROFILE
589
+
590
+
591
+ class RealtimeTableBase(TableBase):
592
+ __abstract__ = True
593
+ TABLE_PROFILE = REALTIME_TABLE_PROFILE
594
+
595
+
596
+ __all__ = ["CrudTableBase", "RealtimeTableBase", "TableBase"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl-base
3
- Version: 0.4.2.dev3
3
+ Version: 0.4.3.dev4
4
4
  Summary: Base contract package for Tigrbl apps, routers, tables, sessions, middleware, requests, responses, bindings, and engine interfaces.
5
5
  License: Apache License
6
6
  Version 2.0, January 2004
@@ -204,6 +204,7 @@ License: Apache License
204
204
  See the License for the specific language governing permissions and
205
205
  limitations under the License.
206
206
  License-File: LICENSE
207
+ License-File: NOTICE
207
208
  Keywords: tigrbl,asgi,api,abstract base classes,api contracts,base contracts,engine interfaces,framework internals,json-rpc,base,base-classes,interfaces,abstractions,openapi,openrpc,request response,rest,schema-first,session interfaces,sqlalchemy,table base
208
209
  Author: Jacob Stewart
209
210
  Author-email: jacob@swarmauri.com
@@ -246,12 +247,45 @@ Description-Content-Type: text/markdown
246
247
  <p><strong>Base contract package for Tigrbl apps, routers, tables, sessions, middleware, requests, responses, bindings, and engine interfaces.</strong></p>
247
248
  <a href="https://pypi.org/project/tigrbl-base/"><img src="https://img.shields.io/pypi/v/tigrbl-base?label=PyPI" alt="PyPI version for tigrbl-base"/></a>
248
249
  <a href="https://pypi.org/project/tigrbl-base/"><img src="https://static.pepy.tech/badge/tigrbl-base" alt="Downloads for tigrbl-base"/></a>
250
+ <a href="https://discord.gg/K4YTAPapjR"><img src="https://img.shields.io/badge/Discord-Join%20chat-5865F2?logo=discord&logoColor=white" alt="Discord community for tigrbl-base"/></a>
249
251
  <a href="https://github.com/tigrbl/tigrbl/blob/master/pkgs/core/tigrbl_base/README.md"><img src="https://hits.sh/github.com/tigrbl/tigrbl/blob/master/pkgs/core/tigrbl_base/README.md.svg?label=hits" alt="Repository hits for tigrbl-base README"/></a>
250
252
  <a href="LICENSE"><img src="https://img.shields.io/badge/license-Apache%202.0-525252" alt="Apache 2.0 license"/></a>
251
- <a href="pyproject.toml"><img src="https://img.shields.io/badge/python-3.10%20to%203.15-3776ab" alt="Python requirement for tigrbl-base"/></a>
253
+ <a href="pyproject.toml"><img src="https://img.shields.io/badge/python-3.10%2C%203.11%2C%203.12%2C%203.13%2C%203.14-3776ab" alt="Python versions 3.10 | 3.11 | 3.12 | 3.13 | 3.14 for tigrbl-base"/></a>
252
254
  <a href="https://github.com/tigrbl/tigrbl/blob/master/docs/README.md"><img src="https://img.shields.io/badge/workspace-core-1f6feb" alt="Workspace group for tigrbl-base"/></a>
253
255
  </div>
254
256
 
257
+ ## What is tigrbl-base?
258
+
259
+ Base contract package for Tigrbl apps, routers, tables, sessions, middleware, requests, responses, bindings, and engine interfaces.
260
+
261
+ ## Why use tigrbl-base?
262
+
263
+ Use it when you need this foundational Tigrbl layer directly as a small, focused dependency.
264
+
265
+ ## When should I install tigrbl-base?
266
+
267
+ Install it for extension packages, package-local tests, or internals that need this boundary without the whole facade.
268
+
269
+ ## Who is tigrbl-base for?
270
+
271
+ Framework maintainers, extension authors, and advanced users composing Tigrbl from split packages.
272
+
273
+ ## Where does tigrbl-base fit?
274
+
275
+ `tigrbl-base` lives at `pkgs/core/tigrbl_base` and serves a focused layer in the split Tigrbl framework.
276
+
277
+ ## How does tigrbl-base work?
278
+
279
+ It owns a narrow layer in the split workspace and is consumed by higher-level packages through explicit dependencies.
280
+
281
+ ## Certification Status
282
+
283
+ - Package status: governed package in the `tigrbl/tigrbl` workspace.
284
+ - Governance source: [SSOT registry](https://github.com/tigrbl/tigrbl/blob/master/.ssot/registry.json).
285
+ - Release evidence: [publish workflow](https://github.com/tigrbl/tigrbl/actions/workflows/publish.yml) validates package builds, tests, GitHub release assets, and PyPI publication for managed packages.
286
+ - Local certification guard: `pkgs/core/tigrbl_tests/tests/unit/test_package_badges_and_notices.py` verifies every package README keeps the Discord badge, Apache 2.0 badge, explicit Python-version badge, `LICENSE`, and `NOTICE`.
287
+ - Scope note: this README documents the package boundary. Runtime feature support remains governed by `.ssot/` entities and the conformance docs linked below.
288
+
255
289
  ## Install
256
290
 
257
291
  ```bash
@@ -262,52 +296,167 @@ uv add tigrbl-base
262
296
  pip install tigrbl-base
263
297
  ```
264
298
 
299
+ ## Surface Coverage
300
+
301
+ | Surface | Value |
302
+ |---|---|
303
+ | PyPI package | [`tigrbl-base`](https://pypi.org/project/tigrbl-base/) |
304
+ | Repository path | [`pkgs/core/tigrbl_base`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_base) |
305
+ | Python import root | `tigrbl_base` |
306
+ | Console scripts | none declared |
307
+ | Entry points | none declared |
308
+ | Optional extras | none declared |
309
+ | Legal files | `LICENSE`, `NOTICE` |
310
+ | Supported Python | `3.10, 3.11, 3.12, 3.13, 3.14` |
311
+
265
312
  ## What It Owns
266
313
 
267
- `tigrbl-base` owns the base boundary inside the split Python workspace.
314
+ `tigrbl-base` owns the `foundational framework package` boundary. It should be installed when you need this package's focused responsibility without assuming every other Tigrbl workspace package is present.
268
315
 
269
- ## Use It When
316
+ Implementation orientation:
317
+ - `tigrbl_base`: _base/, column/
270
318
 
271
- Use `tigrbl-base` when you want this subsystem directly as a package boundary instead of consuming it only through the top-level `tigrbl` facade.
319
+ Package catalog:
320
+ - `_base/_app_base.py`, `_router_base.py`, and `_table_base.py`: abstract app, router, and table behavior used by concrete framework classes.
321
+ - `_base/_op_base.py`, `_binding_base.py`, `_rest_map.py`, and `_rpc_map.py`: operation, binding, REST mapping, and JSON-RPC mapping contracts.
322
+ - `_base/_schema_base.py`, `_request_base.py`, `_response_base.py`, `_headers_base.py`, and `_middleware_base.py`: request/response/schema/header/middleware abstractions.
323
+ - `_base/_engine_base.py`, `_engine_provider_base.py`, `_session_abc.py`, `_session_base.py`, and `_storage.py`: engine, provider, session, and storage interfaces.
324
+ - `_base/_column_base.py`, `_table_registry_base.py`, `_alias_base.py`, `_hook_base.py`, `_security_base.py`, and `_datatype_lowering.py`: table metadata, aliasing, hook/security contracts, and data-type lowering hooks.
325
+ - `_base/_assembly.py` and `_mapping_access.py`: assembly and mapping helpers for concrete implementations.
326
+ - `column/infer`: column inference planning, JSON hint handling, type interpretation, and utility helpers.
272
327
 
273
- ## Public Surface
328
+ ## Public API and Import Surface
274
329
 
275
- - Package-local implementation lives under `pkgs/core/tigrbl_base` and is consumed as a distribution boundary rather than a single broad root re-export.
330
+ - Import roots: `tigrbl_base`.
331
+ - Public symbols: public surface is module-oriented; import the package boundary and inspect submodules as needed.
332
+ - Workspace dependencies: [`tigrbl-core`](https://pypi.org/project/tigrbl-core/), [`tigrbl-atoms`](https://pypi.org/project/tigrbl-atoms/).
333
+ - External runtime dependencies: `sqlalchemy>=2.0`, `pydantic>=2.0`.
276
334
 
277
- ## Internal Layout
335
+ ## Abstraction Semantics
278
336
 
279
- - Workspace path: `pkgs/core/tigrbl_base`.
280
- - Package class: `core framework package`.
281
- - Python requirement: `>=3.10,<3.15`.
337
+ `tigrbl-base` is the abstract contract layer between core specs and concrete implementations. It is useful when you need interface behavior without importing the facade or concrete ASGI/application classes.
282
338
 
283
- ## Dependency Surface
339
+ The package answers questions such as:
284
340
 
285
- - Workspace package dependencies: [`tigrbl-core`](https://pypi.org/project/tigrbl-core/), [`tigrbl-atoms`](https://pypi.org/project/tigrbl-atoms/).
286
- - External runtime dependencies: `sqlalchemy>=2.0`, `pydantic>=2.0`.
287
- - Optional extras: none declared.
341
+ - What must an app/router/table expose for assembly?
342
+ - How do REST and JSON-RPC maps represent operation bindings?
343
+ - What does a request, response, middleware, hook, session, engine provider, or storage adapter need to provide?
344
+ - How should column metadata be inferred before a concrete table class lowers it into ORM/schema/runtime behavior?
345
+
346
+ It should not own route registration side effects, transport IO, database engine construction, or runtime execution. Those belong in `tigrbl-concrete`, engine packages, kernel/runtime packages, or the facade.
347
+
348
+ ## Base Contracts by Area
349
+
350
+ | Area | Base responsibility |
351
+ |---|---|
352
+ | App/router/table | Provide shared assembly, inclusion, registration, and metadata contracts. |
353
+ | Operations and bindings | Represent operation maps, REST maps, RPC maps, alias behavior, and binding access. |
354
+ | Schema and IO | Provide base shape for request/response/schema objects without deciding concrete rendering. |
355
+ | Engine/session/storage | Define provider/session/storage contracts so concrete engines can plug in consistently. |
356
+ | Hooks/security/middleware | Provide registration and interface surfaces for lifecycle customization and request policy. |
357
+ | Columns | Infer and lower type information while keeping spec-level intent separate from concrete ORM wiring. |
358
+
359
+ ## Column Inference
360
+
361
+ `tigrbl_base.column.infer` supports the framework's schema-first and table-first workflows. It helps interpret Python typing, JSON hints, planning metadata, and column options before concrete packages lower them into SQLAlchemy/Pydantic/runtime representations.
362
+
363
+ Best practices for column inference:
364
+ - Keep inference deterministic; the same type hints and config should produce the same plan.
365
+ - Keep storage intent separate from wire-schema intent.
366
+ - Preserve explicit user configuration over inferred defaults.
367
+ - Add tests for ambiguous type handling instead of silently guessing.
368
+
369
+ ## Extension Guidance
370
+
371
+ - Depend on `tigrbl-base` when you are writing concrete adapters, engine adapters, or framework tests that need abstract contracts.
372
+ - Do not import `tigrbl` facade classes here; base should remain lower than the public facade.
373
+ - Keep methods small and contract-oriented. Put operational side effects in concrete implementations or atoms.
374
+ - Treat base classes as compatibility surfaces. Renaming or tightening a method affects all concrete packages.
375
+ - Prefer composition with `tigrbl-core` specs rather than duplicating spec fields in base classes.
376
+
377
+ Authoring BCP for this boundary:
378
+ - Do use `tigrbl-base` for abstract app/router/table/session/request/response/binding/security/middleware/storage contracts and column inference behavior.
379
+ - Do keep column inference deterministic and spec-driven before concrete packages lower intent into ORM, schema, runtime, or docs behavior.
380
+ - Do not make `tigrbl-base` the public application import path for normal service code.
381
+ - Do not put route registration side effects, direct database transaction calls, concrete engine construction, FastAPI/Starlette route objects, or runtime execution into this package.
382
+ - Avoid treating SQLAlchemy materialization as the source of truth here. Base may prepare and validate metadata, but reusable field behavior should remain represented by Tigrbl specs.
383
+
384
+ ## Usage Examples
385
+
386
+ ### Verify the installed package
387
+
388
+ ```bash
389
+ python -m pip show tigrbl-base
390
+ python - <<'PY'
391
+ from importlib.metadata import version
392
+ print(version("tigrbl-base"))
393
+ PY
394
+ ```
395
+
396
+ ### Import the package boundary
397
+
398
+ ```python
399
+ import importlib
400
+
401
+ module = importlib.import_module("tigrbl_base._base")
402
+ print(module.__name__)
403
+ ```
404
+
405
+ ### Inspect available modules
406
+
407
+ ```python
408
+ import importlib
409
+ import pkgutil
410
+
411
+ module = importlib.import_module("tigrbl_base._base")
412
+ for info in pkgutil.iter_modules(getattr(module, "__path__", [])):
413
+ print(info.name)
414
+ ```
415
+
416
+ ### Use with the facade when building applications
417
+
418
+ ```bash
419
+ uv add tigrbl tigrbl-base
420
+ python - <<'PY'
421
+ import tigrbl
422
+ print(tigrbl.__name__)
423
+ PY
424
+ ```
425
+
426
+ ## How To Choose This Package
427
+
428
+ Choose `tigrbl-base` when the quick-answer table matches your use case. Choose [`tigrbl`](https://pypi.org/project/tigrbl/) instead when you want the full public facade. Choose a lower-level package such as [`tigrbl-core`](https://pypi.org/project/tigrbl-core/), [`tigrbl-base`](https://pypi.org/project/tigrbl-base/), or [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/) when you are building framework extensions or testing a specific internal boundary.
288
429
 
289
430
  ## Related Packages
290
431
 
291
- - [`tigrbl`](https://pypi.org/project/tigrbl/)
292
432
  - [`tigrbl-core`](https://pypi.org/project/tigrbl-core/)
293
433
  - [`tigrbl-atoms`](https://pypi.org/project/tigrbl-atoms/)
434
+ - [`tigrbl`](https://pypi.org/project/tigrbl/)
435
+ - [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/)
436
+
437
+ ## Documentation Links
438
+
439
+ - [Workspace docs](https://github.com/tigrbl/tigrbl/blob/master/docs/README.md)
440
+ - [Package catalog](https://github.com/tigrbl/tigrbl/blob/master/docs/developer/PACKAGE_CATALOG.md)
441
+ - [Package layout](https://github.com/tigrbl/tigrbl/blob/master/docs/developer/PACKAGE_LAYOUT.md)
442
+ - [Current target](https://github.com/tigrbl/tigrbl/blob/master/docs/conformance/CURRENT_TARGET.md)
443
+ - [Current state](https://github.com/tigrbl/tigrbl/blob/master/docs/conformance/CURRENT_STATE.md)
444
+ - [Next steps](https://github.com/tigrbl/tigrbl/blob/master/docs/conformance/NEXT_STEPS.md)
445
+ - [Documentation pointers](https://github.com/tigrbl/tigrbl/blob/master/docs/governance/DOC_POINTERS.md)
446
+ - [SSOT registry](https://github.com/tigrbl/tigrbl/blob/master/.ssot/registry.json)
447
+ - [Release workflow](https://github.com/tigrbl/tigrbl/actions/workflows/publish.yml)
294
448
 
295
- ## Canonical Repository Docs
449
+ ## Support
296
450
 
297
- - `docs/README.md`
298
- - `docs/conformance/CURRENT_TARGET.md`
299
- - `docs/conformance/CURRENT_STATE.md`
300
- - `docs/conformance/NEXT_STEPS.md`
301
- - `docs/governance/DOC_POINTERS.md`
302
- - `docs/developer/PACKAGE_CATALOG.md`
303
- - `docs/developer/PACKAGE_LAYOUT.md`
451
+ - Community: [Discord](https://discord.gg/K4YTAPapjR).
452
+ - Issues: [GitHub Issues](https://github.com/tigrbl/tigrbl/issues).
453
+ - Repository: [pkgs/core/tigrbl_base](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_base).
304
454
 
305
455
  ## Package-local Boundary
306
456
 
307
- This file is a package-local distribution entry point.
308
- Use this page for package installation and boundary orientation. Repository governance, conformance state, target status, and release evidence remain governed from `docs/` and `.ssot/`.
457
+ This file is a package-local distribution entry point. This README is the package-local distribution entry point for `tigrbl-base`. It answers install, usage, API, ownership, and certification-orientation questions for this package. Broader architectural decisions, release status, and cross-package proof chains remain in the repository-level docs and SSOT registry.
309
458
 
310
459
  ## License
311
460
 
312
- Licensed under the Apache License, Version 2.0. See `LICENSE` and the official [Apache 2.0 license text](https://www.apache.org/licenses/LICENSE-2.0).
461
+ Licensed under the Apache License, Version 2.0. See `LICENSE`, `NOTICE`, and the official [Apache 2.0 license text](https://www.apache.org/licenses/LICENSE-2.0).
313
462
 
@@ -1,6 +1,6 @@
1
- tigrbl_base/_base/__init__.py,sha256=tMUexh9QHGUfVf24coPrX60pnTjloiE4lGsp60EGnyo,1150
1
+ tigrbl_base/_base/__init__.py,sha256=8-d-nNB1jEfqGR8m7KLU7H5jwin7vMhiEnpz_1hQxB4,1284
2
2
  tigrbl_base/_base/_alias_base.py,sha256=DeBwVYrkOYbQliZriBfnopsLIEZwn6SQMbkS8hGOrO8,1265
3
- tigrbl_base/_base/_app_base.py,sha256=q6x2o1XH9qFayFUVO4f-lWty6yPx8FhfzrUIL6B1-eU,5294
3
+ tigrbl_base/_base/_app_base.py,sha256=osoATbXZhRjEzR8k0S6ACfIFqXPVM1HyOg6-xcPbIrU,5366
4
4
  tigrbl_base/_base/_assembly.py,sha256=k3KRKijcB6XTzm-pSnqOvkAb_htVHlrm5n-tV_dnC1U,1809
5
5
  tigrbl_base/_base/_binding_base.py,sha256=iAgabRGq1w1v-E5jBDOi6QnmVmkin10t_VeA7qKz_Jg,328
6
6
  tigrbl_base/_base/_column_base.py,sha256=tA08qOVe7OTaO-xSQvybE00VJPj2kFZ8Z_UkeJB-aK8,3619
@@ -9,7 +9,7 @@ tigrbl_base/_base/_engine_base.py,sha256=G5ODOOF413ViX7Pkm6FRl7dcqPdzK-PLJiL2Qv9
9
9
  tigrbl_base/_base/_engine_provider_base.py,sha256=WEj4pISQ7z34SOZMNN2ZNci3f5kcPWx85k131db06uM,321
10
10
  tigrbl_base/_base/_headers_base.py,sha256=7DMJIn1LsVlZIjuuBHYrtwW1nLAGum_RIIIPnD8Nvl0,294
11
11
  tigrbl_base/_base/_hook_base.py,sha256=ycRlUXZkzpmE4-sF9UaTHKJ7KqIECd-69dAiSQc8xio,579
12
- tigrbl_base/_base/_mapping_access.py,sha256=Eb_M7VIrjTA0npMl7chkvTrD_vXsxXxkjW1z-ddwoPM,516
12
+ tigrbl_base/_base/_mapping_access.py,sha256=uPhHw7pZJecg8rldwtwXdO355ofm0B29MhXWklWoGn0,683
13
13
  tigrbl_base/_base/_middleware_base.py,sha256=O2QKBimBgaBuzlC3cZKif-Aq-0HebNV0-uqispwOSXg,4579
14
14
  tigrbl_base/_base/_op_base.py,sha256=4kejZkpj6tTcIfF2JAFNxh49z3lgIhvxn9NBw-pUyhc,230
15
15
  tigrbl_base/_base/_request_base.py,sha256=9SKnJfQ9XQgUbUHxx4PXdPUh_53gQkGTCvpANzD30rc,1554
@@ -22,7 +22,7 @@ tigrbl_base/_base/_security_base.py,sha256=LTv3TYeW6WX60KixLsEtIPta5ap4lmqDiSfBB
22
22
  tigrbl_base/_base/_session_abc.py,sha256=oHEvhJyhHrcp4TJrU9znUMA9AlYZCm8i8b6nm6xZL2I,1207
23
23
  tigrbl_base/_base/_session_base.py,sha256=KDdz-tK-0aDhYSv-CQDlnRT17gNT9PaephJmkRtMzU8,4343
24
24
  tigrbl_base/_base/_storage.py,sha256=yCpmR_B9_JV7w-DGJIpKb-VDGtA4yf3F_GJyG4V4JxI,508
25
- tigrbl_base/_base/_table_base.py,sha256=PkYzEXRStwlvcBJQGbHZOBQAn4bBlcLhJm_ht9uUIrw,21629
25
+ tigrbl_base/_base/_table_base.py,sha256=9EMvqqs6MvQh_ykjmIdCyauXfpeNQftW1l56G3PjHFE,23284
26
26
  tigrbl_base/_base/_table_registry_base.py,sha256=0bkl0g6JFonzaaDiP5dVPxJ8g2LVqq25vyu9JniY1zM,1801
27
27
  tigrbl_base/column/__init__.py,sha256=DfJkmiDkpThisBttbzSACAaKc8XtdHH2HMiDBwsuDlc,3306
28
28
  tigrbl_base/column/infer/__init__.py,sha256=JMfMGGiGtc9jMql6po7mu4r7GVZqnyi_YzNNjLrL53I,367
@@ -31,7 +31,8 @@ tigrbl_base/column/infer/jsonhints.py,sha256=pCTXhFUvPvzd9KLxZob_m2SYNaZI0nVIKc7
31
31
  tigrbl_base/column/infer/planning.py,sha256=PebtJaYEIkBVepazmIajbFkvfAEEwFEt9M1p97vjSs0,4264
32
32
  tigrbl_base/column/infer/types.py,sha256=NGdnddAugowHDl8Lhw0b83wxCCLAROjtPtWiyMagoEs,1720
33
33
  tigrbl_base/column/infer/utils.py,sha256=J8VcLGA-KXjy3IJ2ROQ1alyfYP9qj8ukb5Z3IMvasi4,1532
34
- tigrbl_base-0.4.2.dev3.dist-info/METADATA,sha256=3oYIWxWpqUucy26e6umIfzUk_RhbUjIYbyTu3nhOMiw,18392
35
- tigrbl_base-0.4.2.dev3.dist-info/WHEEL,sha256=eY7nduwzv-ldUxpzbRlxwvC693Hg6PX8bWDjEHjZ_dk,88
36
- tigrbl_base-0.4.2.dev3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
37
- tigrbl_base-0.4.2.dev3.dist-info/RECORD,,
34
+ tigrbl_base-0.4.3.dev4.dist-info/METADATA,sha256=h8WC_GJW3rjXfwarEcx4iGpWIfoEtZ8fKgeUTGTy4d4,27445
35
+ tigrbl_base-0.4.3.dev4.dist-info/WHEEL,sha256=eY7nduwzv-ldUxpzbRlxwvC693Hg6PX8bWDjEHjZ_dk,88
36
+ tigrbl_base-0.4.3.dev4.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
37
+ tigrbl_base-0.4.3.dev4.dist-info/licenses/NOTICE,sha256=EvJMTshzsWz43LiK-DeN2ZuLtrP49cxvlrFlJ8F_buc,221
38
+ tigrbl_base-0.4.3.dev4.dist-info/RECORD,,
@@ -0,0 +1,7 @@
1
+ Tigrbl
2
+ Copyright 2026 Swarmauri
3
+
4
+ This product includes software developed by Swarmauri.
5
+
6
+ Tigrbl is licensed under the Apache License, Version 2.0.
7
+ See the LICENSE file distributed with this work for the full license text.