tigrbl_engine_pandas 0.1.1.dev6__tar.gz → 0.1.1.dev14__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.1.dev6 → tigrbl_engine_pandas-0.1.1.dev14}/.gitignore +2 -0
- {tigrbl_engine_pandas-0.1.1.dev6 → tigrbl_engine_pandas-0.1.1.dev14}/PKG-INFO +1 -1
- {tigrbl_engine_pandas-0.1.1.dev6 → tigrbl_engine_pandas-0.1.1.dev14}/pyproject.toml +1 -1
- {tigrbl_engine_pandas-0.1.1.dev6 → tigrbl_engine_pandas-0.1.1.dev14}/src/tigrbl_engine_pandas/engine.py +10 -1
- {tigrbl_engine_pandas-0.1.1.dev6 → tigrbl_engine_pandas-0.1.1.dev14}/LICENSE +0 -0
- {tigrbl_engine_pandas-0.1.1.dev6 → tigrbl_engine_pandas-0.1.1.dev14}/README.md +0 -0
- {tigrbl_engine_pandas-0.1.1.dev6 → tigrbl_engine_pandas-0.1.1.dev14}/distout/.gitignore +0 -0
- {tigrbl_engine_pandas-0.1.1.dev6 → tigrbl_engine_pandas-0.1.1.dev14}/src/tigrbl_engine_pandas/__init__.py +0 -0
- {tigrbl_engine_pandas-0.1.1.dev6 → tigrbl_engine_pandas-0.1.1.dev14}/src/tigrbl_engine_pandas/session.py +0 -0
- {tigrbl_engine_pandas-0.1.1.dev6 → tigrbl_engine_pandas-0.1.1.dev14}/tests/test_smoke.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl_engine_pandas
|
|
3
|
-
Version: 0.1.1.
|
|
3
|
+
Version: 0.1.1.dev14
|
|
4
4
|
Summary: Tigrbl engine plugin providing transactional pandas DataFrame sessions.
|
|
5
5
|
Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
|
|
6
6
|
Project-URL: Repository, https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_pandas
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tigrbl_engine_pandas"
|
|
7
|
-
version = "0.1.1.
|
|
7
|
+
version = "0.1.1.dev14"
|
|
8
8
|
description = "Tigrbl engine plugin providing transactional pandas DataFrame sessions."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { file = "LICENSE" }
|
|
@@ -6,7 +6,16 @@ import threading
|
|
|
6
6
|
|
|
7
7
|
import pandas as pd
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
try:
|
|
10
|
+
from tigrbl.session.spec import SessionSpec
|
|
11
|
+
except Exception:
|
|
12
|
+
|
|
13
|
+
class SessionSpec:
|
|
14
|
+
def __init__(self, isolation=None, read_only=None):
|
|
15
|
+
self.isolation = isolation
|
|
16
|
+
self.read_only = read_only
|
|
17
|
+
|
|
18
|
+
|
|
10
19
|
from .session import TransactionalDataFrameSession
|
|
11
20
|
|
|
12
21
|
# ---- Engine object: in-memory catalog of DataFrames + versions ----
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|