Skip to content

Commit 0d13ff3

Browse files
committed
Adding note about the CLI name changes
1 parent e041e33 commit 0d13ff3

File tree

7 files changed

+14
-0
lines changed

7 files changed

+14
-0
lines changed

getting_started/python-client/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Getting started using TerminusDB Python Client
22

3+
> **_NOTE:_** from version 10.1.0 the cli command is `tdbpy` instead of `terminusdb`
4+
35
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.
46

57
- [Lesson 1 - Installing, start project and create an empty database with schema](lesson_1.md)

getting_started/python-client/lesson_1.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Then we can install using pip:
1717

1818
## Start Project
1919

20+
> **_NOTE:_** from version 10.1.0 the cli command is `tdbpy` instead of `terminusdb`
21+
2022
Now go to the project directory (or start a new one):
2123

2224
`$ cd ../getting_started`

getting_started/python-client/lesson_2.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Lesson 2 - Importing a CSV into the database
22

3+
> **_NOTE:_** from version 10.1.0 the cli command is `tdbpy` instead of `terminusdb`
4+
35
## The `terminusdb importcsv` Command
46

57
In this lesson, we will try to import a CSV with the `terminusdb importcsv` command. It provide a very simple way to import a CSV with less manual effort. There are a few things that you can control with the `terminusdb importcsv` command, like setting the separator character, how to handle NAs and linking columns using a key columns etc. For more complicated data handling, a Python script will be needed and we will demonstrate that the next lesson: [Importing data form Python script](lesson_3.md)

getting_started/python-client/lesson_3.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Lesson 3 - Importing data form Python script
22

3+
> **_NOTE:_** from version 10.1.0 the cli command is `tdbpy` instead of `terminusdb`
4+
35
In last lesson, we have import the [Employees.csv](Employees.csv) with the `terminusdb` commmand. It auto generate the schema for you and pipe in the data form the CSV. Let's check the [schema.py](schema.py), you can see the schema that is generate from the CSV:
46

57
```python

getting_started/python-client/lesson_4.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Lesson 4 - Update and import new data that links to old data
22

3+
> **_NOTE:_** from version 10.1.0 the cli command is `tdbpy` instead of `terminusdb`
4+
35
Remember our imaginary Awesome Startup that has their Phonebook stored in TerminusDB? It has been a few months and they have a new recruit:
46

57
| Employee id | Name | Title | Team | Manager |

getting_started/python-client/lesson_5.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Lesson 5 - Query on the database and get result back as CSV or DataFrame
22

3+
> **_NOTE:_** from version 10.1.0 the cli command is `tdbpy` instead of `terminusdb`
4+
35
In the past lessons, we have learnt how to build schema and import data. Now the database has all the data we wanted, what we will do after is to get information out of the data we have in the database.
46

57
In this lesson, we will learn how to query the database, get the information that we wanted. Then export either to a CSV for later use or to import as Pandas DataFrames for further investigation.

getting_started/python-client/lesson_6.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Lesson 6 - Version control: time travel, branching and rebase
22

3+
> **_NOTE:_** from version 10.1.0 the cli command is `tdbpy` instead of `terminusdb`
4+
35
In this lesson about version control, we will be doing some git like operation that can let us collaborate and time travel.
46

57
## Branch, creating a copy and jump between versions

0 commit comments

Comments
 (0)