tigrbl_engine_pandas 0.1.1.dev22__tar.gz → 0.1.11.dev1__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_engine_pandas-0.1.11.dev1/.gitignore +22 -0
- tigrbl_engine_pandas-0.1.11.dev1/PKG-INFO +50 -0
- tigrbl_engine_pandas-0.1.11.dev1/README.md +23 -0
- {tigrbl_engine_pandas-0.1.1.dev22 → tigrbl_engine_pandas-0.1.11.dev1}/pyproject.toml +7 -4
- tigrbl_engine_pandas-0.1.1.dev22/.gitignore +0 -42
- tigrbl_engine_pandas-0.1.1.dev22/PKG-INFO +0 -71
- tigrbl_engine_pandas-0.1.1.dev22/README.md +0 -26
- tigrbl_engine_pandas-0.1.1.dev22/distout/.gitignore +0 -1
- {tigrbl_engine_pandas-0.1.1.dev22 → tigrbl_engine_pandas-0.1.11.dev1}/LICENSE +0 -0
- {tigrbl_engine_pandas-0.1.1.dev22 → tigrbl_engine_pandas-0.1.11.dev1}/src/tigrbl_engine_pandas/__init__.py +0 -0
- {tigrbl_engine_pandas-0.1.1.dev22 → tigrbl_engine_pandas-0.1.11.dev1}/src/tigrbl_engine_pandas/engine.py +0 -0
- {tigrbl_engine_pandas-0.1.1.dev22 → tigrbl_engine_pandas-0.1.11.dev1}/src/tigrbl_engine_pandas/session.py +0 -0
- {tigrbl_engine_pandas-0.1.1.dev22 → tigrbl_engine_pandas-0.1.11.dev1}/tests/test_smoke.py +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
.pytest_cache/
|
|
3
|
+
.ruff_cache/
|
|
4
|
+
.mypy_cache/
|
|
5
|
+
.tox/
|
|
6
|
+
.nox/
|
|
7
|
+
.venv/
|
|
8
|
+
.coverage
|
|
9
|
+
htmlcov/
|
|
10
|
+
build/
|
|
11
|
+
dist/
|
|
12
|
+
site/
|
|
13
|
+
target/
|
|
14
|
+
*.egg-info/
|
|
15
|
+
*.pyc
|
|
16
|
+
*.zip
|
|
17
|
+
/.vendor
|
|
18
|
+
/.tmp
|
|
19
|
+
*.body
|
|
20
|
+
.pip-cache/
|
|
21
|
+
*.pyd
|
|
22
|
+
.tmp-release-plan-check.json
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tigrbl_engine_pandas
|
|
3
|
+
Version: 0.1.11.dev1
|
|
4
|
+
Summary: Tigrbl engine plugin providing transactional pandas DataFrame sessions.
|
|
5
|
+
Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
|
|
6
|
+
Project-URL: Repository, https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_pandas
|
|
7
|
+
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: database,dataframe,engine,pandas,plugin,tigrbl
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Environment :: Plugins
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Programming Language :: Python
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Topic :: Database
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
23
|
+
Requires-Python: <3.14,>=3.10
|
|
24
|
+
Requires-Dist: pandas>=2.0
|
|
25
|
+
Requires-Dist: tigrbl
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
|
|
28
|
+
# tigrbl_engine_pandas
|
|
29
|
+
|
|
30
|
+
This file is a package-local distribution entry point.
|
|
31
|
+
It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
|
|
32
|
+
|
|
33
|
+
## Canonical repository docs
|
|
34
|
+
|
|
35
|
+
- `README.md`
|
|
36
|
+
- `docs/README.md`
|
|
37
|
+
- `docs/conformance/CURRENT_TARGET.md`
|
|
38
|
+
- `docs/conformance/CURRENT_STATE.md`
|
|
39
|
+
- `docs/conformance/NEXT_STEPS.md`
|
|
40
|
+
- `docs/governance/DOC_POINTERS.md`
|
|
41
|
+
- `docs/developer/PACKAGE_CATALOG.md`
|
|
42
|
+
- `docs/developer/PACKAGE_LAYOUT.md`
|
|
43
|
+
|
|
44
|
+
## Package identity
|
|
45
|
+
|
|
46
|
+
- workspace path: `pkgs/engines/tigrbl_engine_pandas`
|
|
47
|
+
- workspace class: engine package
|
|
48
|
+
- implementation layout: `src/tigrbl_engine_pandas/`
|
|
49
|
+
|
|
50
|
+
Long-form repository documentation is governed from `docs/`.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# tigrbl_engine_pandas
|
|
2
|
+
|
|
3
|
+
This file is a package-local distribution entry point.
|
|
4
|
+
It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
|
|
5
|
+
|
|
6
|
+
## Canonical repository docs
|
|
7
|
+
|
|
8
|
+
- `README.md`
|
|
9
|
+
- `docs/README.md`
|
|
10
|
+
- `docs/conformance/CURRENT_TARGET.md`
|
|
11
|
+
- `docs/conformance/CURRENT_STATE.md`
|
|
12
|
+
- `docs/conformance/NEXT_STEPS.md`
|
|
13
|
+
- `docs/governance/DOC_POINTERS.md`
|
|
14
|
+
- `docs/developer/PACKAGE_CATALOG.md`
|
|
15
|
+
- `docs/developer/PACKAGE_LAYOUT.md`
|
|
16
|
+
|
|
17
|
+
## Package identity
|
|
18
|
+
|
|
19
|
+
- workspace path: `pkgs/engines/tigrbl_engine_pandas`
|
|
20
|
+
- workspace class: engine package
|
|
21
|
+
- implementation layout: `src/tigrbl_engine_pandas/`
|
|
22
|
+
|
|
23
|
+
Long-form repository documentation is governed from `docs/`.
|
|
@@ -4,21 +4,21 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tigrbl_engine_pandas"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.11.dev1"
|
|
8
8
|
description = "Tigrbl engine plugin providing transactional pandas DataFrame sessions."
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
license =
|
|
10
|
+
license = "Apache-2.0"
|
|
11
11
|
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
12
|
-
requires-python = ">=3.10,<3.
|
|
12
|
+
requires-python = ">=3.10,<3.14"
|
|
13
13
|
classifiers = [
|
|
14
14
|
"Development Status :: 1 - Planning",
|
|
15
|
-
"License :: OSI Approved :: Apache Software License",
|
|
16
15
|
"Programming Language :: Python",
|
|
17
16
|
"Programming Language :: Python :: 3",
|
|
18
17
|
"Programming Language :: Python :: 3 :: Only",
|
|
19
18
|
"Programming Language :: Python :: 3.10",
|
|
20
19
|
"Programming Language :: Python :: 3.11",
|
|
21
20
|
"Programming Language :: Python :: 3.12",
|
|
21
|
+
"Programming Language :: Python :: 3.13",
|
|
22
22
|
"Environment :: Plugins",
|
|
23
23
|
"Intended Audience :: Developers",
|
|
24
24
|
"Topic :: Database",
|
|
@@ -60,3 +60,6 @@ dev = [
|
|
|
60
60
|
"ruff>=0.9.9",
|
|
61
61
|
"pytest-benchmark>=4.0.0",
|
|
62
62
|
]
|
|
63
|
+
|
|
64
|
+
[tool.uv.sources]
|
|
65
|
+
tigrbl = { workspace = true }
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
.spyproject
|
|
3
|
-
.spyder
|
|
4
|
-
*.pyc
|
|
5
|
-
build
|
|
6
|
-
dist
|
|
7
|
-
*.egg-info
|
|
8
|
-
*.txt
|
|
9
|
-
env
|
|
10
|
-
.env
|
|
11
|
-
.env.*
|
|
12
|
-
/.vs
|
|
13
|
-
.pyirc
|
|
14
|
-
.venv/
|
|
15
|
-
.ipynb_checkpoints/
|
|
16
|
-
.env
|
|
17
|
-
.DS_STORE
|
|
18
|
-
/combined
|
|
19
|
-
.venv_core*
|
|
20
|
-
*.obj
|
|
21
|
-
pytest_results.json
|
|
22
|
-
pkgs/community/swarmauri_vectorstore_annoy/test_annoy.ann
|
|
23
|
-
/pkgs/standards/ptree_dag/pkgs
|
|
24
|
-
*secrets/*
|
|
25
|
-
peagen_artifacts/
|
|
26
|
-
pkgs/standards/peagen/peagen.zip
|
|
27
|
-
/pkgs/uv.lock
|
|
28
|
-
pkgs/standards/peagen/.pymon
|
|
29
|
-
*.pem
|
|
30
|
-
gateway.db
|
|
31
|
-
kms.db
|
|
32
|
-
*.asc
|
|
33
|
-
*.kid
|
|
34
|
-
*.so
|
|
35
|
-
*.db
|
|
36
|
-
target/
|
|
37
|
-
!.gitkeep # keep the empty dir in repo
|
|
38
|
-
pkgs/experimental/swarmakit/libs/svelte/.vscode/extensions.json
|
|
39
|
-
node_modules/
|
|
40
|
-
*.zip
|
|
41
|
-
.pymon
|
|
42
|
-
/.tmp_pydeps
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: tigrbl_engine_pandas
|
|
3
|
-
Version: 0.1.1.dev22
|
|
4
|
-
Summary: Tigrbl engine plugin providing transactional pandas DataFrame sessions.
|
|
5
|
-
Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
|
|
6
|
-
Project-URL: Repository, https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_pandas
|
|
7
|
-
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
8
|
-
License: Apache License
|
|
9
|
-
Version 2.0, January 2004
|
|
10
|
-
http://www.apache.org/licenses/
|
|
11
|
-
|
|
12
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Tigrbl
|
|
15
|
-
|
|
16
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
17
|
-
you may not use this file except in compliance with the License.
|
|
18
|
-
You may obtain a copy of the License at
|
|
19
|
-
|
|
20
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
21
|
-
|
|
22
|
-
Unless required by applicable law or agreed to in writing, software
|
|
23
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
24
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
25
|
-
See the License for the specific language governing permissions and
|
|
26
|
-
limitations under the License.
|
|
27
|
-
License-File: LICENSE
|
|
28
|
-
Keywords: database,dataframe,engine,pandas,plugin,tigrbl
|
|
29
|
-
Classifier: Development Status :: 1 - Planning
|
|
30
|
-
Classifier: Environment :: Plugins
|
|
31
|
-
Classifier: Intended Audience :: Developers
|
|
32
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
33
|
-
Classifier: Programming Language :: Python
|
|
34
|
-
Classifier: Programming Language :: Python :: 3
|
|
35
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
36
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
37
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
38
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
39
|
-
Classifier: Topic :: Database
|
|
40
|
-
Classifier: Topic :: Software Development :: Libraries
|
|
41
|
-
Requires-Python: <3.13,>=3.10
|
|
42
|
-
Requires-Dist: pandas>=2.0
|
|
43
|
-
Requires-Dist: tigrbl
|
|
44
|
-
Description-Content-Type: text/markdown
|
|
45
|
-
|
|
46
|
-
# tigrbl_engine_pandas
|
|
47
|
-
|
|
48
|
-
A Tigrbl engine plugin that provides a **Pandas-backed** engine/session.
|
|
49
|
-
|
|
50
|
-
- **Native transactions** (`begin/commit/rollback`).
|
|
51
|
-
- **MVCC-style snapshots** for reads.
|
|
52
|
-
- Works with Tigrbl **core CRUD** via the small session surface.
|
|
53
|
-
|
|
54
|
-
## Install
|
|
55
|
-
|
|
56
|
-
```bash
|
|
57
|
-
pip install tigrbl_engine_pandas
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
The plugin **auto-registers** via entry points under the group `tigrbl.engine`.
|
|
61
|
-
|
|
62
|
-
## Usage
|
|
63
|
-
|
|
64
|
-
```python
|
|
65
|
-
from tigrbl.engine.decorators import engine_ctx
|
|
66
|
-
|
|
67
|
-
# Bind by kind using the plugin's engine
|
|
68
|
-
@engine_ctx({"kind": "pandas", "async": True, "tables": {"widgets": df}, "pks": {"widgets": "id"}})
|
|
69
|
-
class API:
|
|
70
|
-
pass
|
|
71
|
-
```
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# tigrbl_engine_pandas
|
|
2
|
-
|
|
3
|
-
A Tigrbl engine plugin that provides a **Pandas-backed** engine/session.
|
|
4
|
-
|
|
5
|
-
- **Native transactions** (`begin/commit/rollback`).
|
|
6
|
-
- **MVCC-style snapshots** for reads.
|
|
7
|
-
- Works with Tigrbl **core CRUD** via the small session surface.
|
|
8
|
-
|
|
9
|
-
## Install
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
pip install tigrbl_engine_pandas
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
The plugin **auto-registers** via entry points under the group `tigrbl.engine`.
|
|
16
|
-
|
|
17
|
-
## Usage
|
|
18
|
-
|
|
19
|
-
```python
|
|
20
|
-
from tigrbl.engine.decorators import engine_ctx
|
|
21
|
-
|
|
22
|
-
# Bind by kind using the plugin's engine
|
|
23
|
-
@engine_ctx({"kind": "pandas", "async": True, "tables": {"widgets": df}, "pks": {"widgets": "id"}})
|
|
24
|
-
class API:
|
|
25
|
-
pass
|
|
26
|
-
```
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
*
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|