Skip to main content

GetDataKwargs

Keyword arguments for dataset's get_data method.

Index

Properties

keyword-onlyclean

clean: bool

Returns only non-empty items and excludes hidden fields. Shortcut for skip_hidden and skip_empty.

keyword-onlydesc

desc: bool

Set to True to sort results in descending order.

keyword-onlyfields

fields: list[str]

Fields to include in each item. Sorts fields as specified if provided.

keyword-onlyflatten

flatten: list[str]

Fields to be flattened in returned items.

keyword-onlylimit

limit: int

The maximum number of items to retrieve. Unlimited if None.

keyword-onlyoffset

offset: int

Skips the specified number of items at the start.

keyword-onlyomit

omit: list[str]

Fields to exclude from each item.

keyword-onlyskip_empty

skip_empty: bool

Excludes empty items from the results if True.

keyword-onlyskip_hidden

skip_hidden: bool

Excludes fields starting with '#' if True.

keyword-onlyunwind

unwind: str

Unwinds items by a specified array field, turning each element into a separate item.

keyword-onlyview

view: str

Specifies the dataset view to be used.