tigrbl_engine_sqlite 0.1.13.dev1__py3-none-any.whl → 0.4.0__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.
@@ -0,0 +1,128 @@
1
+ Metadata-Version: 2.4
2
+ Name: tigrbl_engine_sqlite
3
+ Version: 0.4.0
4
+ Summary: tigrbl_engine_sqlite is a SQLite engine plugin for SQLite SQLAlchemy sessions and local transactional storage for Tigrbl applications.
5
+ Project-URL: Organization, https://github.com/tigrbl
6
+ Project-URL: Discord, https://discord.gg/K4YTAPapjR
7
+ Project-URL: Homepage, https://github.com/tigrbl/tigrbl
8
+ Project-URL: Repository, https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite
9
+ Project-URL: Issues, https://github.com/tigrbl/tigrbl/issues
10
+ Author-email: Jacob Stewart <jacob@swarmauri.com>
11
+ License-Expression: Apache-2.0
12
+ License-File: LICENSE
13
+ Keywords: api,asgi,database,engine,json-rpc,plugin,pydantic,rest,sqlalchemy,sqlite,tigrbl,transactions
14
+ Classifier: Development Status :: 3 - Alpha
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Intended Audience :: Information Technology
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3 :: Only
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Topic :: Database
26
+ Classifier: Topic :: Internet :: WWW/HTTP
27
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
28
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
29
+ Requires-Python: <3.14,>=3.10
30
+ Requires-Dist: sqlalchemy<3.0,>=2.0
31
+ Requires-Dist: tigrbl>=0.3.0.dev4
32
+ Description-Content-Type: text/markdown
33
+
34
+ ![Tigrbl Logo](https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/master/assets/tigrbl_full_logo.png)
35
+
36
+ <p align="center">
37
+ <a href="https://pypi.org/project/tigrbl_engine_sqlite/">
38
+ <img src="https://img.shields.io/pypi/dm/tigrbl_engine_sqlite" alt="PyPI downloads for tigrbl_engine_sqlite"/></a>
39
+ <a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite/">
40
+ <img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite.svg" alt="Repository views for tigrbl_engine_sqlite"/></a>
41
+ <a href="https://pypi.org/project/tigrbl_engine_sqlite/">
42
+ <img src="https://img.shields.io/pypi/pyversions/tigrbl_engine_sqlite" alt="Supported Python versions for tigrbl_engine_sqlite"/></a>
43
+ <a href="https://pypi.org/project/tigrbl_engine_sqlite/">
44
+ <img src="https://img.shields.io/pypi/l/tigrbl_engine_sqlite" alt="PyPI license metadata for tigrbl_engine_sqlite"/></a>
45
+ <a href="https://pypi.org/project/tigrbl_engine_sqlite/">
46
+ <img src="https://img.shields.io/pypi/v/tigrbl_engine_sqlite?label=tigrbl_engine_sqlite&color=green" alt="PyPI version for tigrbl_engine_sqlite"/></a>
47
+ </p>
48
+
49
+ ---
50
+
51
+ # Tigrbl engine-sqlite
52
+
53
+ **Install and inspect `tigrbl_engine_sqlite`: [download `tigrbl_engine_sqlite` from PyPI](https://pypi.org/project/tigrbl_engine_sqlite/) or [open the package source](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite).**
54
+
55
+ tigrbl_engine_sqlite is a SQLite engine plugin for SQLite SQLAlchemy sessions and local transactional storage for Tigrbl applications.
56
+
57
+ `tigrbl_engine_sqlite` is part of the Tigrbl package graph. It documents package-resident classes, concepts, extension points, and execution responsibilities while cross-linking to the facade, core specs, canonical mapping, runtime phases, concrete objects, operation packages, engine plugins, and Rust crates that complete the system.
58
+
59
+ ## Engine ownership and database guards
60
+
61
+ - SQLite connection/session lifecycle, local file database behavior, SQLAlchemy session construction, transaction commit/rollback, and local development guards.
62
+ - Engine packages document backend-specific connection settings, session construction, transaction behavior, persistence boundaries, and operational guardrails. Transport routing and operation semantics remain in the facade/canon/runtime/ops packages.
63
+ - Register this engine through the package entry point or the Tigrbl engine context so API code can select the backend without embedding backend-specific logic in model definitions.
64
+
65
+ ## Package ecosystem cross-links
66
+
67
+ Core cross-links:
68
+ - [`tigrbl`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl) - Facade package
69
+ - [`tigrbl_core`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_core) - Spec and primitive contracts
70
+ - [`tigrbl_canon`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_canon) - Canonical mapping and operation resolution
71
+ - [`tigrbl_runtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime) - Phase lifecycle and execution runtime
72
+ - [`tigrbl_concrete`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_concrete) - Native objects, transports, hooks, deps, and secdeps
73
+ - [`tigrbl_ops_oltp`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_oltp) - CRUD and transactional operation handlers
74
+ - [`tigrbl_ops_olap`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_olap) - Analytical operation boundary
75
+ - [`tigrbl_ops_realtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_realtime) - Stream, transfer, datagram, and realtime ops
76
+ - [`tigrbl_tests`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_tests) - Examples, benchmark, parity, and package test surfaces
77
+ Engine cross-links:
78
+ - [`tigrbl_engine_sqlite`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite) - SQLite local transactional engine
79
+ - [`tigrbl_engine_postgres`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres) - PostgreSQL SQLAlchemy engine
80
+ - [`tigrbl_engine_inmemory`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_inmemory) - Process-local transactional in-memory engine
81
+ - [`tigrbl_engine_redis`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_redis) - Redis cache/database engine
82
+ - [`tigrbl_engine_duckdb`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_duckdb) - DuckDB analytical engine
83
+ - [`tigrbl_engine_pandas`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pandas) - pandas DataFrame engine
84
+ - [`tigrbl_engine_pgsqli_wal`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pgsqli_wal) - PostgreSQL and SQLite WAL engine
85
+ Rust cross-links:
86
+ - [`tigrbl_rs_spec`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_spec) - Rust IR and AppSpec model
87
+ - [`tigrbl_rs_atoms`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_atoms) - Rust atom catalog and phase algebra
88
+ - [`tigrbl_rs_kernel`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_kernel) - Rust compiler and plan optimizer
89
+ - [`tigrbl_rs_runtime`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_runtime) - Rust executor and callback fences
90
+ - [`tigrbl_rs_ports`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_ports) - Engine, session, transaction, callback, and handler ports
91
+
92
+ ## Install
93
+
94
+ ```bash
95
+ pip install tigrbl_engine_sqlite
96
+ ```
97
+
98
+ ## Package discovery
99
+
100
+ Search and AI discovery terms for `tigrbl_engine_sqlite` include: tigrbl, ASGI, REST, JSON-RPC, SQLAlchemy, Pydantic, asgi, api, json-rpc, rest, sqlalchemy, pydantic, engine, plugin, database, sqlite, transactions.
101
+
102
+ ## Package-local entry point
103
+
104
+ This file is a package-local distribution entry point.
105
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
106
+
107
+ ## Canonical repository docs
108
+
109
+ - `README.md`
110
+ - `docs/README.md`
111
+ - `docs/conformance/CURRENT_TARGET.md`
112
+ - `docs/conformance/CURRENT_STATE.md`
113
+ - `docs/conformance/NEXT_STEPS.md`
114
+ - `docs/governance/DOC_POINTERS.md`
115
+ - `docs/developer/PACKAGE_CATALOG.md`
116
+ - `docs/developer/PACKAGE_LAYOUT.md`
117
+
118
+ ## Package identity
119
+
120
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
121
+ - organization: `https://github.com/tigrbl`
122
+ - social: `https://discord.gg/K4YTAPapjR`
123
+ - package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite`
124
+ - workspace path: `pkgs/engines/tigrbl_engine_sqlite`
125
+ - workspace class: engine package
126
+ - implementation layout: `src/tigrbl_engine_sqlite/`
127
+
128
+ Long-form repository documentation is governed from `docs/`.
@@ -0,0 +1,9 @@
1
+ tigrbl_engine_sqlite/__init__.py,sha256=pph1fpyliccHolhYt2vWd0YnzOsU8GCSUkz56tbozJs,255
2
+ tigrbl_engine_sqlite/engine.py,sha256=JZeuwd83BsDYpAFQUNj_603kUfTNOQEaANr31M0KLeg,1614
3
+ tigrbl_engine_sqlite/plugin.py,sha256=Kdx9ARUTHRX24ilHEulPuxsUNJESySNylnTQXM8cEtk,442
4
+ tigrbl_engine_sqlite/session.py,sha256=G4YCJGJChGRXKtIO4V7mmusEJF4cwjthrQ4WmGnqPPM,154
5
+ tigrbl_engine_sqlite-0.4.0.dist-info/METADATA,sha256=s4ERg-aS0xVEiO0z5Fzmc6mxpWyqRqaJYGn49PIgVUk,8456
6
+ tigrbl_engine_sqlite-0.4.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
7
+ tigrbl_engine_sqlite-0.4.0.dist-info/entry_points.txt,sha256=baVoudv2Z7gZ5brAZEh3SCRCgqvRq535kDuP4sAIEbA,55
8
+ tigrbl_engine_sqlite-0.4.0.dist-info/licenses/LICENSE,sha256=708mvS2G_dkXGD6DVfUDngIUW4HW-T14Ws-q7shsacA,10880
9
+ tigrbl_engine_sqlite-0.4.0.dist-info/RECORD,,
@@ -1,54 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: tigrbl_engine_sqlite
3
- Version: 0.1.13.dev1
4
- Summary: SQLite engine plugin for Tigrbl.
5
- Project-URL: Homepage, https://github.com/swarmauri/tigrbl
6
- Project-URL: Repository, https://github.com/swarmauri/tigrbl/tree/main/pkgs/engines/tigrbl_engine_sqlite
7
- Project-URL: Issues, https://github.com/swarmauri/tigrbl/issues
8
- Author-email: Jacob Stewart <jacob@swarmauri.com>
9
- License-Expression: Apache-2.0
10
- License-File: LICENSE
11
- Keywords: engine,sqlalchemy,sqlite,tigrbl,transaction
12
- Classifier: Development Status :: 1 - Planning
13
- Classifier: Programming Language :: Python :: 3.10
14
- Classifier: Programming Language :: Python :: 3.11
15
- Classifier: Programming Language :: Python :: 3.12
16
- Classifier: Programming Language :: Python :: 3.13
17
- Requires-Python: <3.14,>=3.10
18
- Requires-Dist: sqlalchemy<3.0,>=2.0
19
- Requires-Dist: tigrbl>=0.3.0.dev4
20
- Description-Content-Type: text/markdown
21
-
22
- # tigrbl_engine_sqlite
23
-
24
- SQLite engine plugin for **Tigrbl**.
25
-
26
- ## Install
27
-
28
- ```bash
29
- pip install tigrbl_engine_sqlite
30
- ```
31
-
32
- ## Use
33
-
34
- ```python
35
- from tigrbl.engine.decorators import engine_ctx
36
-
37
- @engine_ctx({"kind": "sqlite", "path": "./data/app.db"})
38
- class AppAPI:
39
- pass
40
- ```
41
-
42
- The plugin auto-registers via the `tigrbl.engine` entry point.
43
- ## Canonical documentation
44
-
45
- This file is a package-local distribution entry point. Authoritative workspace guidance lives in:
46
-
47
- - `docs/README.md`
48
- - `docs/conformance/CURRENT_TARGET.md`
49
- - `docs/conformance/CURRENT_STATE.md`
50
- - `docs/conformance/NEXT_STEPS.md`
51
- - `docs/governance/DOC_POINTERS.md`
52
- - `docs/developer/PACKAGE_CATALOG.md`
53
- - `docs/developer/PACKAGE_LAYOUT.md`
54
-
@@ -1,9 +0,0 @@
1
- tigrbl_engine_sqlite/__init__.py,sha256=pph1fpyliccHolhYt2vWd0YnzOsU8GCSUkz56tbozJs,255
2
- tigrbl_engine_sqlite/engine.py,sha256=JZeuwd83BsDYpAFQUNj_603kUfTNOQEaANr31M0KLeg,1614
3
- tigrbl_engine_sqlite/plugin.py,sha256=Kdx9ARUTHRX24ilHEulPuxsUNJESySNylnTQXM8cEtk,442
4
- tigrbl_engine_sqlite/session.py,sha256=G4YCJGJChGRXKtIO4V7mmusEJF4cwjthrQ4WmGnqPPM,154
5
- tigrbl_engine_sqlite-0.1.13.dev1.dist-info/METADATA,sha256=wQ-nOXyuOoF98Q0xf7s_ifQQqXtdW-wcglDqAzkpwu8,1594
6
- tigrbl_engine_sqlite-0.1.13.dev1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
7
- tigrbl_engine_sqlite-0.1.13.dev1.dist-info/entry_points.txt,sha256=baVoudv2Z7gZ5brAZEh3SCRCgqvRq535kDuP4sAIEbA,55
8
- tigrbl_engine_sqlite-0.1.13.dev1.dist-info/licenses/LICENSE,sha256=708mvS2G_dkXGD6DVfUDngIUW4HW-T14Ws-q7shsacA,10880
9
- tigrbl_engine_sqlite-0.1.13.dev1.dist-info/RECORD,,