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
Copy file name to clipboardExpand all lines: README.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Install using pip:
21
21
22
22
`$ python3 -m pip install terminusdb-client`
23
23
24
-
If you are new to TerminusDB/ TerminusX and will use Python client, you are recommended to check out the [Getting Started tutorial series](./getting_started/python-client).
24
+
If you are new to TerminusDB/ TerminusCMS and will use Python client, you are recommended to check out the [Getting Started tutorial series](./getting_started/python-client).
25
25
26
26
27
27
#### JavaScript Client
@@ -47,15 +47,15 @@ Taking you through the process of loading RDF into TerminusDB and then using Gra
47
47
48
48
Details: [README](./star-wars)
49
49
50
-
## Getting Started using TerminusDB/ TerminusX with the Python client
50
+
## Getting Started using TerminusDB/ TerminusCMS with the Python client
51
51
52
-
A tutorial series to help anyone who's new to TerminusDB/ TerminusX to start working using the Python client.
52
+
A tutorial series to help anyone who's new to TerminusDB/ TerminusCMS to start working using the Python client.
Copy file name to clipboardExpand all lines: diff_patch/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Diff and Patch with TerminusDB/ TerminusX Demo
1
+
# Diff and Patch with TerminusDB/ TerminusCMS Demo
2
2
3
3
In this demo tutorial, we will show how the diff and patch operation can be applied to monitor changes in TerminusDB schema, TerminusDB documents, JSON schema and with other document database like MongoDB.
Copy file name to clipboardExpand all lines: getting_started/javascript-client/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Getting started using TerminusDB Javascript Client
2
2
3
-
This is a step by step tutorial to get you started using TerminusDB/ TerminusX for the first time. This will cover all the basics that you can work with TerminusDB/ TerminusX using the Javascript client.
3
+
This is a step by step tutorial to get you started using TerminusDB/ TerminusCMS for the first time. This will cover all the basics that you can work with TerminusDB/ TerminusCMS using the Javascript client.
4
4
5
5
-[Lesson 1 - Installing, start project and create an empty database with schema](lesson_1.md)
6
6
-[Lesson 2 - Importing data form CSV using Javascript script](lesson_2.md)
Copy file name to clipboardExpand all lines: getting_started/javascript-client/lesson_1.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Installing
4
4
5
-
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusX. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusX, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusX dashboard](https://dashboard.terminusdb.com/) under profile.)
5
+
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusCMS. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusCMS, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusCMS dashboard](https://dashboard.terminusdb.com/) under profile.)
6
6
7
7
It is recommended to install the TerminusDB Javascript client (works with [Nodejs >= 10](https://nodejs.org/en/download/)) in a separate new nodejs project.
To verify the schema is committed, if you are using TerminusX, you can see changes in the dashboard. Since we are using TerminusDB locally (it works with TerminusX as well), we can look at the commit history by:
125
+
To verify the schema is committed, if you are using TerminusCMS, you can see changes in the dashboard. Since we are using TerminusDB locally (it works with TerminusCMS as well), we can look at the commit history by:
126
126
127
127
```javascript
128
128
// Get commit history
@@ -154,7 +154,7 @@ const client = new TerminusClient.WOQLClient(
154
154
{ user: username, organization: teamName }
155
155
);
156
156
157
-
// If you are using TerminusX you need to generate you api key
157
+
// If you are using TerminusCMS you need to generate you api key
158
158
// https://terminusdb.com/docs/terminusx/get-api-key here the documentation
If you are using TerminusX, you can find the information of your endpoint, team, and API token from the [TerminusX dashboard](https://dashboard.terminusdb.com/) under profile.
126
+
If you are using TerminusCMS, you can find the information of your endpoint, team, and API token from the [TerminusCMS dashboard](https://dashboard.terminusdb.com/) under profile.
127
127
128
128
Now we are all ready, the last thing to do is to insert the documents:
129
129
@@ -152,7 +152,7 @@ const result = await client.getDocument({"as_list":true});
152
152
console.log(result);
153
153
```
154
154
155
-
Or if the data is on TerminusX, you can check it in the [TerminusX dashboard](https://dashboard.terminusdb.com/)
155
+
Or if the data is on TerminusCMS, you can check it in the [TerminusCMS dashboard](https://dashboard.terminusdb.com/)
Copy file name to clipboardExpand all lines: getting_started/python-client/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
> **_NOTE:_** from version 10.1.0 the cli command is `tdbpy` instead of `terminusdb`
4
4
5
-
This is a step by step tutorial to get you started using TerminusDB/ TerminusX for the first time. This will cover all the basics that you can work with TerminusDB/ TerminusX using the Python client.
5
+
This is a step by step tutorial to get you started using TerminusDB/ TerminusCMS for the first time. This will cover all the basics that you can work with TerminusDB/ TerminusCMS using the Python client.
6
6
7
7
-[Lesson 1 - Installing, start project and create an empty database with schema](lesson_1.md)
8
8
-[Lesson 2 - Importing a CSV into the database](lesson_2.md)
Copy file name to clipboardExpand all lines: getting_started/python-client/lesson_1.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Installing
4
4
5
-
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusX. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusX, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusX dashboard](https://dashboard.terminusdb.com/) under profile.)
5
+
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusCMS. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusCMS, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusCMS dashboard](https://dashboard.terminusdb.com/) under profile.)
6
6
7
7
It is recommended to install the TerminusDB Python client (works with [Python >= 3.7](https://www.python.org/downloads)) in a [separate Python environment](https://docs.python.org/3/tutorial/venv.html). For example, if we use `venv` which comes with standard installation of Python 3. First we create new environment:
8
8
@@ -27,7 +27,7 @@ In the project directory start a TerminusDB project:
27
27
28
28
`$ tdbpy startproject`
29
29
30
-
You will be prompt with a few questions. Pick a project name (or the database name if you already have a working database) and if you are running the localhost server with default port you can just press Enter. You have to provide the endpoint and other login information if you are using TerminusX or otherwise.
30
+
You will be prompt with a few questions. Pick a project name (or the database name if you already have a working database) and if you are running the localhost server with default port you can just press Enter. You have to provide the endpoint and other login information if you are using TerminusCMS or otherwise.
31
31
32
32
This is what I did:
33
33
@@ -118,7 +118,7 @@ getting_started created.
118
118
getting_started schema updated.
119
119
```
120
120
121
-
To verify the schema is commit, if you are using TerminusX, you can see changes in the dashboard. Since we are using TerminusDB locally (it works with TerminusX as well), we can look at the logs by:
121
+
To verify the schema is commit, if you are using TerminusCMS, you can see changes in the dashboard. Since we are using TerminusDB locally (it works with TerminusCMS as well), we can look at the logs by:
Copy file name to clipboardExpand all lines: getting_started/python-client/lesson_3.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ In the first half of the script, we have to manage and import the data form CSV.
39
39
import csv
40
40
```
41
41
42
-
Also we need to import `WOQLClient` which is the client that communitcate with the TerminusDB/ TerminusX and `schema.py`:
42
+
Also we need to import `WOQLClient` which is the client that communitcate with the TerminusDB/ TerminusCMS and `schema.py`:
43
43
44
44
```python
45
45
from terminusdb_client import WOQLClient
@@ -113,7 +113,7 @@ Then we will connect the client to our database. If you are connecting locally a
113
113
client.connect(db="getting_started")
114
114
```
115
115
116
-
If you are using TerminusX, you can find the information of your endpoint, team, and API token from the [TerminusX dashboard](https://dashboard.terminusdb.com/) under profile.
116
+
If you are using TerminusCMS, you can find the information of your endpoint, team, and API token from the [TerminusCMS dashboard](https://dashboard.terminusdb.com/) under profile.
117
117
118
118
Now we are all ready, the last thing to do is to insert the documents:
119
119
@@ -135,7 +135,7 @@ To check if the data is insert correctly, we can use the `tdbpy alldocs` command
135
135
$ tdbpy alldocs --type Employee
136
136
```
137
137
138
-
Or if the data is on TerminusX, you can check it in the [TerminusX dashboard](https://dashboard.terminusdb.com/)
138
+
Or if the data is on TerminusCMS, you can check it in the [TerminusCMS dashboard](https://dashboard.terminusdb.com/)
Copy file name to clipboardExpand all lines: getting_started/python-client/lesson_4.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Also, our Marketing Manager Destiny has moved to a new address:
20
20
21
21
How are we going to update the records?
22
22
23
-
## Getting data objects back from TerminusDB/ TerminusX
23
+
## Getting data objects back from TerminusDB/ TerminusCMS
24
24
25
25
Let's look at how to update Destiny's Address. We did it with the [update_data.py](update_data.py). The first step after connecting with the client is to get back the schema of the database. In the terminal we can use:
26
26
@@ -123,7 +123,7 @@ To check if the database is up-to-date, you can do in the terminal like we did b
123
123
124
124
`$ tdbpy alldocs`
125
125
126
-
Or if you are using TerminusX, you can also check it in the dashboard.
126
+
Or if you are using TerminusCMS, you can also check it in the dashboard.
Copy file name to clipboardExpand all lines: nobel_prize/README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
# Nobel Prize Winners (1900 - 2020)
2
2
3
-
In this tutorial, we will pull the Nobel Prize winners data from a [CSV file](https://www.kaggle.com/rishidamarla/nobel-prize-winners-19002020) and put it in TerminusDB/TerminusX.
3
+
In this tutorial, we will pull the Nobel Prize winners data from a [CSV file](https://www.kaggle.com/rishidamarla/nobel-prize-winners-19002020) and put it in TerminusDB/TerminusCMS.
4
4
5
5
## Check your endpoint is running
6
6
7
-
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusX. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusX, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusX dashboard](https://dashboard.terminusdb.com/) under profile.
7
+
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusCMS. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusCMS, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusCMS dashboard](https://dashboard.terminusdb.com/) under profile.
8
8
9
9
## Clone this repository
10
10
@@ -40,7 +40,7 @@ In the project directory start a TerminusDB project:
40
40
$ tdbpy startproject
41
41
```
42
42
43
-
You will be prompt with a few questions. Pick a project name and if you are running the localhost server with default port you can just press Enter. You have to provide the endpoint and other login information if you are using TerminusX or otherwise.
43
+
You will be prompt with a few questions. Pick a project name and if you are running the localhost server with default port you can just press Enter. You have to provide the endpoint and other login information if you are using TerminusCMS or otherwise.
44
44
45
45
This is what I did:
46
46
@@ -106,13 +106,13 @@ We create the schema of the data we'll be writing to the stream formatted as a J
106
106
107
107
Records in the dataset are read by calling `read_data` function and written to the stream by calling `write_data`.
108
108
109
-
## Import the Nobel Prize winners data into TerminusDB/ TerminusX
109
+
## Import the Nobel Prize winners data into TerminusDB/ TerminusCMS
0 commit comments