tigrbl_engine_memqueue 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.
@@ -1,2 +1,2 @@
1
1
  __all__ = ["__version__"]
2
- __version__ = "0.1.0"
2
+ __version__ = "0.4.0.dev1"
@@ -0,0 +1,125 @@
1
+ Metadata-Version: 2.4
2
+ Name: tigrbl_engine_memqueue
3
+ Version: 0.4.0
4
+ Summary: tigrbl_engine_memqueue is an in-memory queue engine plugin for process-local queue semantics for Tigrbl task and message workflows.
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_memqueue
9
+ Project-URL: Issues, https://github.com/tigrbl/tigrbl/issues
10
+ License-Expression: Apache-2.0
11
+ Keywords: api,asgi,database,engine,inmemory,json-rpc,memqueue,messages,plugin,pydantic,queue,rest,sqlalchemy,tasks,tigrbl
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Information Technology
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3 :: Only
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Topic :: Database
24
+ Classifier: Topic :: Internet :: WWW/HTTP
25
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
26
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
27
+ Requires-Python: <3.14,>=3.10
28
+ Requires-Dist: tigrbl
29
+ Description-Content-Type: text/markdown
30
+
31
+ ![Tigrbl Logo](https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/master/assets/tigrbl_full_logo.png)
32
+
33
+ <p align="center">
34
+ <a href="https://pypi.org/project/tigrbl_engine_memqueue/">
35
+ <img src="https://img.shields.io/pypi/dm/tigrbl_engine_memqueue" alt="PyPI downloads for tigrbl_engine_memqueue"/></a>
36
+ <a href="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_memqueue/">
37
+ <img src="https://hits.sh/github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_memqueue.svg" alt="Repository views for tigrbl_engine_memqueue"/></a>
38
+ <a href="https://pypi.org/project/tigrbl_engine_memqueue/">
39
+ <img src="https://img.shields.io/pypi/pyversions/tigrbl_engine_memqueue" alt="Supported Python versions for tigrbl_engine_memqueue"/></a>
40
+ <a href="https://pypi.org/project/tigrbl_engine_memqueue/">
41
+ <img src="https://img.shields.io/pypi/l/tigrbl_engine_memqueue" alt="PyPI license metadata for tigrbl_engine_memqueue"/></a>
42
+ <a href="https://pypi.org/project/tigrbl_engine_memqueue/">
43
+ <img src="https://img.shields.io/pypi/v/tigrbl_engine_memqueue?label=tigrbl_engine_memqueue&color=green" alt="PyPI version for tigrbl_engine_memqueue"/></a>
44
+ </p>
45
+
46
+ ---
47
+
48
+ # Tigrbl engine-memqueue
49
+
50
+ **Install and inspect `tigrbl_engine_memqueue`: [download `tigrbl_engine_memqueue` from PyPI](https://pypi.org/project/tigrbl_engine_memqueue/) or [open the package source](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_memqueue).**
51
+
52
+ tigrbl_engine_memqueue is an in-memory queue engine plugin for process-local queue semantics for Tigrbl task and message workflows.
53
+
54
+ `tigrbl_engine_memqueue` 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.
55
+
56
+ ## Engine ownership and database guards
57
+
58
+ - process-local queue semantics, task/message ordering, and queue lifecycle guardrails.
59
+ - 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.
60
+ - 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.
61
+
62
+ ## Package ecosystem cross-links
63
+
64
+ Core cross-links:
65
+ - [`tigrbl`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl) - Facade package
66
+ - [`tigrbl_core`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_core) - Spec and primitive contracts
67
+ - [`tigrbl_canon`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_canon) - Canonical mapping and operation resolution
68
+ - [`tigrbl_runtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_runtime) - Phase lifecycle and execution runtime
69
+ - [`tigrbl_concrete`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_concrete) - Native objects, transports, hooks, deps, and secdeps
70
+ - [`tigrbl_ops_oltp`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_oltp) - CRUD and transactional operation handlers
71
+ - [`tigrbl_ops_olap`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_olap) - Analytical operation boundary
72
+ - [`tigrbl_ops_realtime`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_ops_realtime) - Stream, transfer, datagram, and realtime ops
73
+ - [`tigrbl_tests`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/core/tigrbl_tests) - Examples, benchmark, parity, and package test surfaces
74
+ Engine cross-links:
75
+ - [`tigrbl_engine_sqlite`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_sqlite) - SQLite local transactional engine
76
+ - [`tigrbl_engine_postgres`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_postgres) - PostgreSQL SQLAlchemy engine
77
+ - [`tigrbl_engine_inmemory`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_inmemory) - Process-local transactional in-memory engine
78
+ - [`tigrbl_engine_redis`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_redis) - Redis cache/database engine
79
+ - [`tigrbl_engine_duckdb`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_duckdb) - DuckDB analytical engine
80
+ - [`tigrbl_engine_pandas`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pandas) - pandas DataFrame engine
81
+ - [`tigrbl_engine_pgsqli_wal`](https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_pgsqli_wal) - PostgreSQL and SQLite WAL engine
82
+ Rust cross-links:
83
+ - [`tigrbl_rs_spec`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_spec) - Rust IR and AppSpec model
84
+ - [`tigrbl_rs_atoms`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_atoms) - Rust atom catalog and phase algebra
85
+ - [`tigrbl_rs_kernel`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_kernel) - Rust compiler and plan optimizer
86
+ - [`tigrbl_rs_runtime`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_runtime) - Rust executor and callback fences
87
+ - [`tigrbl_rs_ports`](https://github.com/tigrbl/tigrbl/tree/master/crates/tigrbl_rs_ports) - Engine, session, transaction, callback, and handler ports
88
+
89
+ ## Install
90
+
91
+ ```bash
92
+ pip install tigrbl_engine_memqueue
93
+ ```
94
+
95
+ ## Package discovery
96
+
97
+ Search and AI discovery terms for `tigrbl_engine_memqueue` include: tigrbl, ASGI, REST, JSON-RPC, SQLAlchemy, Pydantic, asgi, api, json-rpc, rest, sqlalchemy, pydantic, engine, plugin, database, memqueue, queue, tasks.
98
+
99
+ ## Package-local entry point
100
+
101
+ This file is a package-local distribution entry point.
102
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
103
+
104
+ ## Canonical repository docs
105
+
106
+ - `README.md`
107
+ - `docs/README.md`
108
+ - `docs/conformance/CURRENT_TARGET.md`
109
+ - `docs/conformance/CURRENT_STATE.md`
110
+ - `docs/conformance/NEXT_STEPS.md`
111
+ - `docs/governance/DOC_POINTERS.md`
112
+ - `docs/developer/PACKAGE_CATALOG.md`
113
+ - `docs/developer/PACKAGE_LAYOUT.md`
114
+
115
+ ## Package identity
116
+
117
+ - canonical repository: `https://github.com/tigrbl/tigrbl`
118
+ - organization: `https://github.com/tigrbl`
119
+ - social: `https://discord.gg/K4YTAPapjR`
120
+ - package path: `https://github.com/tigrbl/tigrbl/tree/master/pkgs/engines/tigrbl_engine_memqueue`
121
+ - workspace path: `pkgs/engines/tigrbl_engine_memqueue`
122
+ - workspace class: engine package
123
+ - implementation layout: `src/tigrbl_engine_memqueue/`
124
+
125
+ Long-form repository documentation is governed from `docs/`.
@@ -0,0 +1,8 @@
1
+ tigrbl_engine_memqueue/__init__.py,sha256=jXjzFS-sicLv5zOSDSuq_RFSu9S_ZRoBPRmJfXidzr4,53
2
+ tigrbl_engine_memqueue/plugin.py,sha256=hkchl1DctA3LvQ8sYj9Suot1Sh-RpCxvjkRT3p6OfBc,1149
3
+ tigrbl_engine_memqueue/queuehub.py,sha256=H39pCkbUuMBLyvpgszJA8QVYV9Lv1g8AhhOfR7DU8Xs,4513
4
+ tigrbl_engine_memqueue/session.py,sha256=iT-wK5BMgDC1l-dRXn3vf8WhEgHx03s53C_P_RvIffk,1346
5
+ tigrbl_engine_memqueue-0.4.0.dist-info/METADATA,sha256=bCDd162pJWdZEry9_aBLwoCa8IY7BboIWhQ7oNw9hSA,8336
6
+ tigrbl_engine_memqueue-0.4.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
7
+ tigrbl_engine_memqueue-0.4.0.dist-info/entry_points.txt,sha256=zaihZDVkzYBeQoWHkTfCz9ndnTghQ6rPBlyzGCtc8xw,66
8
+ tigrbl_engine_memqueue-0.4.0.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: tigrbl_engine_memqueue
3
- Version: 0.1.13.dev1
4
- Project-URL: Homepage, https://github.com/swarmauri/tigrbl
5
- Project-URL: Repository, https://github.com/swarmauri/tigrbl/tree/main/pkgs/engines/tigrbl_engine_memqueue
6
- Project-URL: Issues, https://github.com/swarmauri/tigrbl/issues
7
- Requires-Python: <3.14,>=3.10
8
- Requires-Dist: tigrbl
@@ -1,8 +0,0 @@
1
- tigrbl_engine_memqueue/__init__.py,sha256=tXbRXsO0NE_UV1kIHiZTTQQH0fj0U2KoxxNusu_gzrM,48
2
- tigrbl_engine_memqueue/plugin.py,sha256=hkchl1DctA3LvQ8sYj9Suot1Sh-RpCxvjkRT3p6OfBc,1149
3
- tigrbl_engine_memqueue/queuehub.py,sha256=H39pCkbUuMBLyvpgszJA8QVYV9Lv1g8AhhOfR7DU8Xs,4513
4
- tigrbl_engine_memqueue/session.py,sha256=iT-wK5BMgDC1l-dRXn3vf8WhEgHx03s53C_P_RvIffk,1346
5
- tigrbl_engine_memqueue-0.1.13.dev1.dist-info/METADATA,sha256=7NoSBUfknGfUwDmKU82gfJULsIqmBCdo8Dd4GDcRjVw,354
6
- tigrbl_engine_memqueue-0.1.13.dev1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
7
- tigrbl_engine_memqueue-0.1.13.dev1.dist-info/entry_points.txt,sha256=zaihZDVkzYBeQoWHkTfCz9ndnTghQ6rPBlyzGCtc8xw,66
8
- tigrbl_engine_memqueue-0.1.13.dev1.dist-info/RECORD,,