faninsar.query.result.BaseResult#

class faninsar.query.result.BaseResult(result: dict)[source]#

Bases: object

Base class for the result of the queries.

__init__(result: dict) None[source]#

Initialize the BaseResult instance.

Parameters:

result (dict) – The result of the query.

Methods

__init__(result)

Initialize the BaseResult instance.

Attributes

data

List of numpy arrays.

dims

Description of the dimensions.

frame

DataFrame of the result.

is_empty

If the result is empty.

property data: list[np.ndarray] | None#

List of numpy arrays.

property dims: str | None#

Description of the dimensions.

property frame: DataFrame | None#

DataFrame of the result.

property is_empty: bool#

If the result is empty.