tigrbl_engine_duckdb 0.1.1.dev24__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_duckdb-0.1.11.dev1/.gitignore +22 -0
- tigrbl_engine_duckdb-0.1.11.dev1/PKG-INFO +43 -0
- tigrbl_engine_duckdb-0.1.11.dev1/README.md +23 -0
- {tigrbl_engine_duckdb-0.1.1.dev24 → tigrbl_engine_duckdb-0.1.11.dev1}/pyproject.toml +7 -4
- tigrbl_engine_duckdb-0.1.1.dev24/.gitignore +0 -42
- tigrbl_engine_duckdb-0.1.1.dev24/PKG-INFO +0 -56
- tigrbl_engine_duckdb-0.1.1.dev24/README.md +0 -28
- tigrbl_engine_duckdb-0.1.1.dev24/distout/.gitignore +0 -1
- {tigrbl_engine_duckdb-0.1.1.dev24 → tigrbl_engine_duckdb-0.1.11.dev1}/LICENSE +0 -0
- {tigrbl_engine_duckdb-0.1.1.dev24 → tigrbl_engine_duckdb-0.1.11.dev1}/src/tigrbl_engine_duckdb/__init__.py +0 -0
- {tigrbl_engine_duckdb-0.1.1.dev24 → tigrbl_engine_duckdb-0.1.11.dev1}/src/tigrbl_engine_duckdb/duck_builder.py +0 -0
- {tigrbl_engine_duckdb-0.1.1.dev24 → tigrbl_engine_duckdb-0.1.11.dev1}/src/tigrbl_engine_duckdb/duck_session.py +0 -0
- {tigrbl_engine_duckdb-0.1.1.dev24 → tigrbl_engine_duckdb-0.1.11.dev1}/src/tigrbl_engine_duckdb/plugin.py +0 -0
- {tigrbl_engine_duckdb-0.1.1.dev24 → tigrbl_engine_duckdb-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,43 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tigrbl_engine_duckdb
|
|
3
|
+
Version: 0.1.11.dev1
|
|
4
|
+
Summary: DuckDB engine extension for Tigrbl (optional plugin).
|
|
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_duckdb
|
|
7
|
+
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: experimental,tigrbl,tigrbl_engine_duckdb
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Requires-Python: <3.14,>=3.10
|
|
17
|
+
Requires-Dist: duckdb>=1.0.0
|
|
18
|
+
Requires-Dist: tigrbl>=0.3.0.dev4
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
|
|
21
|
+
# tigrbl_engine_duckdb
|
|
22
|
+
|
|
23
|
+
This file is a package-local distribution entry point.
|
|
24
|
+
It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
|
|
25
|
+
|
|
26
|
+
## Canonical repository docs
|
|
27
|
+
|
|
28
|
+
- `README.md`
|
|
29
|
+
- `docs/README.md`
|
|
30
|
+
- `docs/conformance/CURRENT_TARGET.md`
|
|
31
|
+
- `docs/conformance/CURRENT_STATE.md`
|
|
32
|
+
- `docs/conformance/NEXT_STEPS.md`
|
|
33
|
+
- `docs/governance/DOC_POINTERS.md`
|
|
34
|
+
- `docs/developer/PACKAGE_CATALOG.md`
|
|
35
|
+
- `docs/developer/PACKAGE_LAYOUT.md`
|
|
36
|
+
|
|
37
|
+
## Package identity
|
|
38
|
+
|
|
39
|
+
- workspace path: `pkgs/engines/tigrbl_engine_duckdb`
|
|
40
|
+
- workspace class: engine package
|
|
41
|
+
- implementation layout: `src/tigrbl_engine_duckdb/`
|
|
42
|
+
|
|
43
|
+
Long-form repository documentation is governed from `docs/`.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# tigrbl_engine_duckdb
|
|
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_duckdb`
|
|
20
|
+
- workspace class: engine package
|
|
21
|
+
- implementation layout: `src/tigrbl_engine_duckdb/`
|
|
22
|
+
|
|
23
|
+
Long-form repository documentation is governed from `docs/`.
|
|
@@ -4,18 +4,18 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tigrbl_engine_duckdb"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.11.dev1"
|
|
8
8
|
description = "DuckDB engine extension for Tigrbl (optional plugin)."
|
|
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 :: 3.10",
|
|
17
16
|
"Programming Language :: Python :: 3.11",
|
|
18
17
|
"Programming Language :: Python :: 3.12",
|
|
18
|
+
"Programming Language :: Python :: 3.13",
|
|
19
19
|
]
|
|
20
20
|
keywords = ["tigrbl_engine_duckdb", "tigrbl", "experimental"]
|
|
21
21
|
dependencies = [
|
|
@@ -46,3 +46,6 @@ dev = [
|
|
|
46
46
|
"ruff>=0.9.9",
|
|
47
47
|
"pytest-benchmark>=4.0.0",
|
|
48
48
|
]
|
|
49
|
+
|
|
50
|
+
[tool.uv.sources]
|
|
51
|
+
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,56 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: tigrbl_engine_duckdb
|
|
3
|
-
Version: 0.1.1.dev24
|
|
4
|
-
Summary: DuckDB engine extension for Tigrbl (optional plugin).
|
|
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_duckdb
|
|
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
|
-
1. Definitions.
|
|
15
|
-
...
|
|
16
|
-
END OF TERMS AND CONDITIONS
|
|
17
|
-
License-File: LICENSE
|
|
18
|
-
Keywords: experimental,tigrbl,tigrbl_engine_duckdb
|
|
19
|
-
Classifier: Development Status :: 1 - Planning
|
|
20
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
-
Requires-Python: <3.13,>=3.10
|
|
25
|
-
Requires-Dist: duckdb>=1.0.0
|
|
26
|
-
Requires-Dist: tigrbl>=0.3.0.dev4
|
|
27
|
-
Description-Content-Type: text/markdown
|
|
28
|
-
|
|
29
|
-
# tigrbl_engine_duckdb
|
|
30
|
-
|
|
31
|
-
DuckDB engine extension for **Tigrbl**. This package registers the `duckdb`
|
|
32
|
-
engine kind with Tigrbl’s engine registry via entry points.
|
|
33
|
-
|
|
34
|
-
## Install
|
|
35
|
-
|
|
36
|
-
```bash
|
|
37
|
-
pip install tigrbl_engine_duckdb
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
## Use
|
|
41
|
-
|
|
42
|
-
After installing, you can bind DuckDB using `engine_ctx`:
|
|
43
|
-
|
|
44
|
-
```python
|
|
45
|
-
from tigrbl.engine.decorators import engine_ctx
|
|
46
|
-
from tigrbl.session.decorators import session_ctx
|
|
47
|
-
|
|
48
|
-
@engine_ctx({"kind": "duckdb", "path": "./data/app.duckdb",
|
|
49
|
-
"pragmas": {"memory_limit": "2GB"}})
|
|
50
|
-
@session_ctx({"isolation": "repeatable_read"})
|
|
51
|
-
class AnalyticsAPI:
|
|
52
|
-
pass
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
No import of this package is required in your app; Tigrbl auto-loads the
|
|
56
|
-
plugin via entry points on import.
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
# tigrbl_engine_duckdb
|
|
2
|
-
|
|
3
|
-
DuckDB engine extension for **Tigrbl**. This package registers the `duckdb`
|
|
4
|
-
engine kind with Tigrbl’s engine registry via entry points.
|
|
5
|
-
|
|
6
|
-
## Install
|
|
7
|
-
|
|
8
|
-
```bash
|
|
9
|
-
pip install tigrbl_engine_duckdb
|
|
10
|
-
```
|
|
11
|
-
|
|
12
|
-
## Use
|
|
13
|
-
|
|
14
|
-
After installing, you can bind DuckDB using `engine_ctx`:
|
|
15
|
-
|
|
16
|
-
```python
|
|
17
|
-
from tigrbl.engine.decorators import engine_ctx
|
|
18
|
-
from tigrbl.session.decorators import session_ctx
|
|
19
|
-
|
|
20
|
-
@engine_ctx({"kind": "duckdb", "path": "./data/app.duckdb",
|
|
21
|
-
"pragmas": {"memory_limit": "2GB"}})
|
|
22
|
-
@session_ctx({"isolation": "repeatable_read"})
|
|
23
|
-
class AnalyticsAPI:
|
|
24
|
-
pass
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
No import of this package is required in your app; Tigrbl auto-loads the
|
|
28
|
-
plugin via entry points on import.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
*
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|