Metadata-Version: 2.1
Name: typedb-driver
Version: 2.29.7
Summary: TypeDB Driver for Python
Home-page: https://github.com/vaticle/typedb-driver-python/
Author: TypeDB Community
Author-email: community@typedb.com
License: Apache-2.0
Keywords: typedb database graph knowledgebase knowledge-engineering
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Environment :: Console
Classifier: Topic :: Database :: Front-Ends
Requires-Python: >0
Description-Content-Type: text/markdown
Requires-Dist: parse (==1.18.0)

# TypeDB Python Driver

## Driver Architecture
To learn about the mechanism that a TypeDB Driver uses to set up communication with databases running on the TypeDB Server, refer to the [Clients Overview](https://typedb.com/docs/drivers/overview).

## API Reference
To learn about the methods available for executing queries and retrieving their answers using Driver Python, refer to the [API Reference](https://typedb.com/docs/drivers/python/api-reference).

## Install TypeDB Driver for Python through Pip
```
pip install typedb-driver
```
If multiple Python versions are available, you may wish to use
```
pip3 install typedb-driver
```

In your python program, import from typedb.driver:
```py
from typedb.driver import *

driver = TypeDB.core_driver(address=TypeDB.DEFAULT_ADDRESS)
```
