To learn about the mechanism that a TypeDB Client uses to set up communication with databases running on the TypeDB Server, refer to TypeDB > Client API > Overview.
To learn about the methods available for executing queries and retrieving their answers using Client Python, refer to TypeDB > Client API > Python > API Reference.
To learn about the methods available on the concepts retrieved as the answers to TypeQL queries, refer to TypeDB > Concept API > Overview
pip install typedb-client
If multiple Python versions are available, you may wish to use
pip3 install typedb-client
In your python program, import from typedb.client:
from typedb.client import *
client = TypeDB.core_client(address=TypeDB.DEFAULT_ADDRESS)