turingdb 0.2.4__tar.gz → 0.2.6__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.

Potentially problematic release.


This version of turingdb might be problematic. Click here for more details.

@@ -1,15 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: turingdb
3
- Version: 0.2.4
3
+ Version: 0.2.6
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
8
  Requires-Python: >=3.10
9
+ Requires-Dist: click>=8.2.1
9
10
  Requires-Dist: httpx>=0.28.1
10
11
  Requires-Dist: orjson>=3.11.1
11
12
  Requires-Dist: pandas-stubs>=2.3.0.250703
12
13
  Requires-Dist: pandas>=2.3.1
14
+ Requires-Dist: prompt-toolkit>=3.0.52
13
15
  Description-Content-Type: text/markdown
14
16
 
15
17
  # turingdb-sdk-python
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.2.4'
32
- __version_tuple__ = version_tuple = (0, 2, 4)
31
+ __version__ = version = '0.2.6'
32
+ __version_tuple__ = version_tuple = (0, 2, 6)
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -0,0 +1,5 @@
1
+ from turingdb import TuringDB
2
+
3
+ if __name__ == '__main__':
4
+ client = TuringDB(host='http://localhost:1234')
5
+ client.load_graph('reactome')