tigrbl_engine_csv 0.1.1.dev2__tar.gz → 0.1.1.dev4__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.
@@ -30,9 +30,13 @@ pkgs/standards/peagen/.pymon
30
30
  gateway.db
31
31
  kms.db
32
32
  *.asc
33
+ *.kid
33
34
  *.so
34
35
  *.db
35
36
  target/
36
37
  !.gitkeep # keep the empty dir in repo
37
38
  pkgs/experimental/swarmakit/libs/svelte/.vscode/extensions.json
38
39
  node_modules/
40
+ *.zip
41
+ .pymon
42
+ /.tmp_pydeps
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl_engine_csv
3
- Version: 0.1.1.dev2
3
+ Version: 0.1.1.dev4
4
4
  Summary: CSV engine plugin for tigrbl backed by pandas DataFrames.
5
5
  Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
6
6
  Author-email: Jacob Stewart <jacob@swarmauri.com>
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "tigrbl_engine_csv"
7
- version = "0.1.1.dev2"
7
+ version = "0.1.1.dev4"
8
8
  description = "CSV engine plugin for tigrbl backed by pandas DataFrames."
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE" }
@@ -3,8 +3,17 @@ from __future__ import annotations
3
3
  from typing import TYPE_CHECKING, Any, Callable
4
4
 
5
5
  import pandas as pd
6
- from tigrbl.session.base import TigrblSessionBase
7
- from tigrbl.session.spec import SessionSpec
6
+
7
+ try:
8
+ from tigrbl.session.base import TigrblSessionBase
9
+ except Exception:
10
+ from tigrbl_engine_pandas.session import TigrblSessionBase
11
+
12
+ try:
13
+ from tigrbl.session.spec import SessionSpec
14
+ except Exception:
15
+ from tigrbl_engine_pandas.session import SessionSpec
16
+
8
17
  from tigrbl_engine_pandas.session import TransactionalDataFrameSession
9
18
 
10
19
  if TYPE_CHECKING:
@@ -5,10 +5,11 @@ from pathlib import Path
5
5
  import pytest
6
6
 
7
7
  from tigrbl import TigrblApp
8
- from tigrbl.bindings import rpc_call
8
+ from tigrbl import rpc_call
9
9
  from tigrbl.engine import EngineSpec
10
10
  from tigrbl.orm.mixins import GUIDPk
11
- from tigrbl.specs import F, IO, S, acol
11
+ from tigrbl.specs import F, IO, S
12
+ from tigrbl.shortcuts import acol
12
13
  from tigrbl.table import Table
13
14
  from tigrbl.types import Mapped, String
14
15