CrateDB Python Client

Introduction

The Python client library for CrateDB implements the Python Database API Specification v2.0 (PEP 249).

The Python driver can be used to connect to both CrateDB and CrateDB Cloud, and is verified to work on Linux, macOS, and Windows. It is used by the Crash CLI, as well as other libraries and applications connecting to CrateDB from the Python ecosystem. It is verified to work with CPython, but it has also been tested successfully with PyPy.

Please make sure to also visit the section about Other connectivity options for Python, using the PostgreSQL wire protocol interface of CrateDB.

Documentation

For general help about the Python Database API, please consult PEP 249. For more detailed information about how to install the client driver, how to connect to a CrateDB cluster, and how to run queries, consult the resources referenced below.

DB API

Install package from PyPI.

pip install crate

Connect to CrateDB instance running on localhost.

# Connect using DB API.
from crate import client
from pprint import pp

query = "SELECT country, mountain, coordinates, height FROM sys.summits ORDER BY country;"

with client.connect("localhost:4200", username="crate") as connection:
    cursor = connection.cursor()
    cursor.execute(query)
    pp(cursor.fetchall())
    cursor.close()

Connect to CrateDB Cloud.

# Connect using DB API.
from crate import client
connection = client.connect(
    servers="https://example.aks1.westeurope.azure.cratedb.net:4200",
    username="admin",
    password="<PASSWORD>")

Data types

The DB API driver supports CrateDB’s data types to different degrees. For more information, please consult the Data types documentation page.

Migration Notes

The CrateDB dialect for SQLAlchemy is provided by the sqlalchemy-cratedb package.

If you are migrating from previous versions of crate[sqlalchemy]<1.0.0, you will find that the newer releases crate>=1.0.0 no longer include the SQLAlchemy dialect for CrateDB.

See migrate to sqlalchemy-cratedb for relevant guidelines about how to successfully migrate to the sqlalchemy-cratedb package.

Examples

See also

The CrateDB Python client library is an open source project and is managed on GitHub. Contributions, feedback, or patches are highly welcome!