turingdb 0.1.0__py3-none-any.whl → 0.2.2__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.
Potentially problematic release.
This version of turingdb might be problematic. Click here for more details.
- turingdb/__init__.pyi +18 -0
- {turingdb-0.1.0.dist-info → turingdb-0.2.2.dist-info}/METADATA +2 -2
- turingdb-0.2.2.dist-info/RECORD +6 -0
- turingdb-0.1.0.dist-info/RECORD +0 -5
- {turingdb-0.1.0.dist-info → turingdb-0.2.2.dist-info}/WHEEL +0 -0
- {turingdb-0.1.0.dist-info → turingdb-0.2.2.dist-info}/licenses/LICENSE.txt +0 -0
turingdb/__init__.pyi
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from _typeshed import Incomplete
|
|
2
|
+
|
|
3
|
+
class TuringDBException(Exception):
|
|
4
|
+
def __init__(self, message: str) -> None: ...
|
|
5
|
+
|
|
6
|
+
class TuringDB:
|
|
7
|
+
DEFAULT_HEADERS: Incomplete
|
|
8
|
+
host: Incomplete
|
|
9
|
+
def __init__(self, instance_id: str = '', auth_token: str = '', host: str = 'https://engines.turingdb.ai/sdk') -> None: ...
|
|
10
|
+
def list_available_graphs(self) -> list[str]: ...
|
|
11
|
+
def list_loaded_graphs(self) -> list[str]: ...
|
|
12
|
+
def load_graph(self, graph_name: str, raise_if_loaded: bool = True): ...
|
|
13
|
+
def create_graph(self, graph_name: str): ...
|
|
14
|
+
def query(self, query: str): ...
|
|
15
|
+
def set_commit(self, commit: str): ...
|
|
16
|
+
def set_change(self, change: str): ...
|
|
17
|
+
def checkout(self, change: str = 'main', commit: str = 'HEAD'): ...
|
|
18
|
+
def set_graph(self, graph_name: str): ...
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: turingdb
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: TuringDB python sdk
|
|
5
5
|
Project-URL: Homepage, https://github.com/turing-db/turingdb-sdk-python
|
|
6
6
|
Project-URL: Repository, https://github.com/turing-db/turingdb-sdk-python
|
|
7
7
|
License-File: LICENSE.txt
|
|
8
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
9
|
Requires-Dist: httpx>=0.28.1
|
|
10
10
|
Requires-Dist: orjson>=3.11.1
|
|
11
11
|
Requires-Dist: pandas>=2.3.1
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
turingdb/__init__.py,sha256=jDI3-GTmSmWvEhFlV4y7l1UTSt9L-6952D5WOzW55cY,4533
|
|
2
|
+
turingdb/__init__.pyi,sha256=O6ZMBGuBgXInR2anKZI3ycMZECIuhlsTUanZiHjZEqs,790
|
|
3
|
+
turingdb-0.2.2.dist-info/METADATA,sha256=wMW-ulQiFRq9wOCMNbMErxdkZfzjdGdLJwrCPfO-QVw,477
|
|
4
|
+
turingdb-0.2.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
5
|
+
turingdb-0.2.2.dist-info/licenses/LICENSE.txt,sha256=PgwD9hjeoyWO93yZQnxCyt0s-PlhXWLgqdCPpB91GhY,1078
|
|
6
|
+
turingdb-0.2.2.dist-info/RECORD,,
|
turingdb-0.1.0.dist-info/RECORD
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
turingdb/__init__.py,sha256=jDI3-GTmSmWvEhFlV4y7l1UTSt9L-6952D5WOzW55cY,4533
|
|
2
|
-
turingdb-0.1.0.dist-info/METADATA,sha256=G_24yqlVrl6DoJ4sZQ_gBSj8jKXgfhrmRN7-uskF42U,476
|
|
3
|
-
turingdb-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4
|
-
turingdb-0.1.0.dist-info/licenses/LICENSE.txt,sha256=PgwD9hjeoyWO93yZQnxCyt0s-PlhXWLgqdCPpB91GhY,1078
|
|
5
|
-
turingdb-0.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|