|
12 | 12 | [](https://pypi.python.org/pypi/terminusdb-client/) |
13 | 13 |
|
14 | 14 | [](https://github.com/terminusdb/terminusdb-client-python/actions) |
15 | | -[](https://terminusdb.com/docs/python) |
| 15 | +[](https://terminusdb.org/docs/python) |
16 | 16 | [](https://codecov.io/gh/terminusdb/terminusdb-client-python) |
17 | 17 | [](https://github.com/terminusdb/terminusdb-client-python/blob/main/LICENSE) |
18 | 18 |
|
19 | 19 | > Python client for TerminusDB and TerminusCMS. |
20 | 20 |
|
21 | 21 | [**TerminusDB**][terminusdb] is an [open-source][terminusdb-repo] graph database |
22 | 22 | and document store. It allows you to link JSON documents in a powerful knowledge |
23 | | -graph all through a simple document API. |
| 23 | +graph all through a simple document API, with full git-for-data version control. |
24 | 24 |
|
25 | | -[terminusdb]: https://terminusdb.com/ |
26 | | -[terminusdb-docs]: https://terminusdb.com/docs/ |
| 25 | +[terminusdb]: https://terminusdb.org/ |
| 26 | +[terminusdb-docs]: https://terminusdb.org/docs/ |
27 | 27 | [terminusdb-repo]: https://github.com/terminusdb/terminusdb |
28 | 28 |
|
29 | | -[**TerminusCMS**](https://terminusdb.com/terminuscms/) is a hosted headless content management system. It is built upon TerminusDB and is a developer-focused data management platform for complex data and content infrastructure. [Sign up and clone a demo project to see how it works][dashboard]. |
30 | | - |
31 | | -[dashboard]: https://dashboard.terminusdb.com/ |
32 | | - |
33 | 29 | ## Requirements |
34 | 30 |
|
35 | | -- [TerminusDB v10.0](https://github.com/terminusdb/terminusdb-server) |
| 31 | +- [TerminusDB v11.1](https://github.com/terminusdb/terminusdb-server) |
36 | 32 | - [Python >=3.8](https://www.python.org/downloads) |
37 | 33 |
|
38 | 34 | ## Release Notes and Previous Versions |
39 | 35 |
|
40 | | -TerminusDB Client v10.0 works with TerminusDB v10.0 and TerminusCMS. Please check the [Release Notes](RELEASE_NOTES.md) to find out what has changed. |
| 36 | +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. |
41 | 37 |
|
42 | 38 | ## Installation |
43 | 39 | - TerminusDB Client can be downloaded from PyPI using pip: |
@@ -76,16 +72,16 @@ client = Client("http://127.0.0.1:6363/") |
76 | 72 | client.connect() |
77 | 73 | ``` |
78 | 74 |
|
79 | | -Connect to TerminusCMS |
| 75 | +Connect to TerminusDB in the cloud |
80 | 76 |
|
81 | | -*check the documentation for TerminusCMS about how to add the [API token](https://terminusdb.com/docs/how-to-connect-terminuscms) to the environment variable* |
| 77 | +*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* |
82 | 78 |
|
83 | 79 |
|
84 | 80 | ```Python |
85 | 81 | from terminusdb_client import Client |
86 | 82 |
|
87 | 83 | team="MyTeam" |
88 | | -client = Client(f"https://dashboard.terminusdb.com/{team}/") |
| 84 | +client = Client(f"https://studio.dfrnt.com/api/hosted/{team}/") |
89 | 85 | client.connect(team="MyTeam", use_token=True) |
90 | 86 | ``` |
91 | 87 |
|
@@ -185,11 +181,11 @@ Do you want to delete 'mydb'? WARNING: This operation is non-reversible. [y/N]: |
185 | 181 | mydb deleted. |
186 | 182 | ``` |
187 | 183 |
|
188 | | -### Please check the [full Documentation](https://terminusdb.com/docs/python) for more information. |
| 184 | +### Please check the [full Documentation](https://terminusdb.org/docs/python) for more information. |
189 | 185 |
|
190 | 186 | ## Guides & Tutorials |
191 | 187 |
|
192 | | -Visit our documentation for a range of short how-to guides, [how-to use the Python Client](https://terminusdb.com/docs/use-the-python-client) and [how to use the collaboration features with the Python Client](https://terminusdb.com/docs/collaboration-with-python-client). Alternatively, undertake the [Getting Started with the Python Client Tutorial Series.](https://github.com/terminusdb/terminusdb-tutorials/blob/main/getting_started/python-client/README.md). |
| 188 | +Visit our documentation for a range of short how-to guides, [how-to use the Python Client](https://terminusdb.org/docs/use-the-python-client) and [how to use the collaboration features with the Python Client](https://terminusdb.org/docs/collaboration-with-python-client). Alternatively, undertake the [Getting Started with the Python Client Tutorial Series.](https://github.com/terminusdb/terminusdb-tutorials/blob/main/getting_started/python-client/README.md). |
193 | 189 |
|
194 | 190 | ## Testing |
195 | 191 |
|
|
0 commit comments