TileDB Python API Reference

Modules

Typical usage of the Python interface to TileDB will use the top-level module tiledb, e.g.

import tiledb

There is also a submodule libtiledb which contains the necessary bindings to the underlying TileDB native library. Most of the time you will not need to interact with tiledb.libtiledb unless you need native-library specific information, e.g. the version number:

import tiledb
tiledb.libtiledb.version()  # Native TileDB library version number

Getting Started

Arrays may be opened with the tiledb.open function:

Data import helpers

Context

Config

Array Schema

Attribute

Filters

Dimension

Domain

Array

Dense Array

Sparse Array

Query Condition

Group

Object

Object Management

Fragment Info

Exceptions

VFS

Filestore

Version

Statistics