Skip to content

Commit 5d36cb7

Browse files
committed
Update the readme
1 parent 8c781b0 commit 5d36cb7

File tree

1 file changed

+11
-15
lines changed

1 file changed

+11
-15
lines changed

README.md

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,28 @@
1212
[![downloads](https://img.shields.io/pypi/dm/terminusdb-client.svg?logo=pypi)](https://pypi.python.org/pypi/terminusdb-client/)
1313

1414
[![build status](https://img.shields.io/github/workflow/status/terminusdb/terminusdb-client-python/Python%20package?logo=github)](https://github.com/terminusdb/terminusdb-client-python/actions)
15-
[![documentation](https://img.shields.io/github/deployments/terminusdb/terminusdb-client-python/github-pages?label=documentation&logo=github)](https://terminusdb.com/docs/python)
15+
[![documentation](https://img.shields.io/github/deployments/terminusdb/terminusdb-client-python/github-pages?label=documentation&logo=github)](https://terminusdb.org/docs/python)
1616
[![code coverage](https://codecov.io/gh/terminusdb/terminusdb-client-python/branch/main/graph/badge.svg?token=BclAUaOPnQ)](https://codecov.io/gh/terminusdb/terminusdb-client-python)
1717
[![license](https://img.shields.io/github/license/terminusdb/terminusdb-client-python?color=pink&logo=apache)](https://github.com/terminusdb/terminusdb-client-python/blob/main/LICENSE)
1818

1919
> Python client for TerminusDB and TerminusCMS.
2020
2121
[**TerminusDB**][terminusdb] is an [open-source][terminusdb-repo] graph database
2222
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.
2424

25-
[terminusdb]: https://terminusdb.com/
26-
[terminusdb-docs]: https://terminusdb.com/docs/
25+
[terminusdb]: https://terminusdb.org/
26+
[terminusdb-docs]: https://terminusdb.org/docs/
2727
[terminusdb-repo]: https://github.com/terminusdb/terminusdb
2828

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-
3329
## Requirements
3430

35-
- [TerminusDB v10.0](https://github.com/terminusdb/terminusdb-server)
31+
- [TerminusDB v11.1](https://github.com/terminusdb/terminusdb-server)
3632
- [Python >=3.8](https://www.python.org/downloads)
3733

3834
## Release Notes and Previous Versions
3935

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.
4137

4238
## Installation
4339
- TerminusDB Client can be downloaded from PyPI using pip:
@@ -76,16 +72,16 @@ client = Client("http://127.0.0.1:6363/")
7672
client.connect()
7773
```
7874

79-
Connect to TerminusCMS
75+
Connect to TerminusDB in the cloud
8076

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*
8278

8379

8480
```Python
8581
from terminusdb_client import Client
8682

8783
team="MyTeam"
88-
client = Client(f"https://dashboard.terminusdb.com/{team}/")
84+
client = Client(f"https://studio.dfrnt.com/api/hosted/{team}/")
8985
client.connect(team="MyTeam", use_token=True)
9086
```
9187

@@ -185,11 +181,11 @@ Do you want to delete 'mydb'? WARNING: This operation is non-reversible. [y/N]:
185181
mydb deleted.
186182
```
187183

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.
189185

190186
## Guides & Tutorials
191187

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).
193189

194190
## Testing
195191

0 commit comments

Comments
 (0)