Get started with TileDB Cloud for Python

This is a starting guide for the TileDB-Cloud-Py client.

Login

To login programmatically you will need either

Username and Password method

import tiledb.cloud

tiledb.cloud.login(
    host=<tiledb.host>,
    username=<username>,
    password=<password>
)

Token method

import tiledb.cloud

tiledb.cloud.login(
    host=<tiledb.host>,
    token=<token>
)