Skip to content

Commit f8a9264

Browse files
committed
Fix even more ones
1 parent 0e44342 commit f8a9264

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
runproject:
2-
terminusdb commit
3-
terminusdb importcsv Employees.csv --classname EmployeesFromCSV --id "Employee id" -e Manager -m "Import Employees from CSV"
2+
tdbpy commit
3+
tdbpy importcsv Employees.csv --classname EmployeesFromCSV --id "Employee id" -e Manager -m "Import Employees from CSV"
44
python insert_data.py
55
python update_data.py
6-
terminusdb branch contractors
6+
tdbpy branch contractors
77
python add_contractors.py

getting_started/python-client/lesson_4.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ How are we going to update the records?
2424

2525
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:
2626

27-
`$ terminusdb sync`
27+
`$ tdbpy sync`
2828

2929
To update the `schema.py` for easy inspection. However, since we have to do it in the script and import the documents, we will create a `WOQLSchema` object and sync up that object with the database's schema:
3030

@@ -121,7 +121,7 @@ Run the scripts:
121121

122122
To check if the database is up-to-date, you can do in the terminal like we did before:
123123

124-
`$ terminusdb alldocs`
124+
`$ tdbpy alldocs`
125125

126126
Or if you are using TerminusX, you can also check it in the dashboard.
127127

nobel_prize/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ python3 -m pip install target-terminusdb pandas tqdm tempfile
3737
In the project directory start a TerminusDB project:
3838

3939
```
40-
$ terminusdb startproject
40+
$ tdbpy startproject
4141
```
4242

4343
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.
@@ -117,5 +117,5 @@ $ python nobel_prize.py | target-terminusdb -c config.json
117117
Check if the documents are looking good by using the following command to get 10 documents to inspect:
118118

119119
```
120-
$ terminusdb alldocs -h 10
120+
$ tdbpy alldocs -h 10
121121
```

0 commit comments

Comments
 (0)