You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TerminusDB Client v11.1 works with TerminusDB v11.1 and the [DFRNT cloud service](https://dfrnt.com). Please check the [Release Notes](RELEASE_NOTES.md) to find out what has changed.
40
+
TerminusDB Client v12 works with TerminusDB v12 onwards and the [DFRNT cloud service](https://dfrnt.com). Please check the [Release Notes](RELEASE_NOTES.md) to find out what has changed.
37
41
38
42
## Installation
39
43
- TerminusDB Client can be downloaded from PyPI using pip:
40
-
`python -m pip install terminusdb-client`
44
+
`python -m pip install terminusdb`
41
45
42
46
This only includes the core Python Client (Client) and WOQLQuery.
43
47
44
48
If you want to use woqlDataframe or the import and export CSV function in the Scaffolding CLI tool:
@@ -66,19 +70,21 @@ If you want to use woqlDataframe or the import and export CSV function in the Sc
66
70
Connect to local host
67
71
68
72
```Python
69
-
fromterminusdb_clientimport Client
73
+
fromterminusdbimport Client
70
74
71
75
client = Client("http://127.0.0.1:6363/")
72
76
client.connect()
73
77
```
74
78
79
+
The previous import path `from terminusdb_client import Client` also continues to work.
80
+
75
81
Connect to TerminusDB in the cloud
76
82
77
83
*check the documentation on the DFRNT support page about how to add your [API token](https://support.dfrnt.com/portal/en/kb/articles/api) to the environment variable*
0 commit comments