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 of your TileDB account.
- Or an API Token generated from your TileDB account.
Username and Password method
import tiledb.cloud
tiledb.cloud.login(=<tiledb.host>,
host=<username>,
username=<password>
password )
Token method
import tiledb.cloud
tiledb.cloud.login(=<tiledb.host>,
host=<token>
token )