Module data.row (2.23.1)

API documentation for bigtable.data.row module.

Classes

Cell

Cell(
    value: bytes,
    row_key: bytes,
    family: str,
    qualifier: bytes | str,
    timestamp_micros: int,
    labels: typing.Optional[list[str]] = None,
)

Model class for cell data

Does not represent all data contained in the cell, only data returned by a query. Expected to be read-only to users, and written by backend

Row

Row(key: bytes, cells: list[google.cloud.bigtable.data.row.Cell])

Model class for row data returned from server

Does not represent all data contained in the row, only data returned by a query. Expected to be read-only to users, and written by backend

Can be indexed: cells = row["family", "qualifier"]