Skip to main content

GetDataKwargs

Keyword arguments for dataset's get_data method.

Index

Properties

keyword-onlyoptionalclean

clean: bool

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

keyword-onlyoptionaldesc

desc: bool

Set to True to sort results in descending order.

keyword-onlyoptionalfields

fields: list[str]

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

keyword-onlyoptionalflatten

flatten: list[str]

Field to be flattened in returned items.

keyword-onlyoptionallimit

limit: int

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

keyword-onlyoptionaloffset

offset: int

Skip the specified number of items at the start.

keyword-onlyoptionalomit

omit: list[str]

Fields to exclude from each item.

keyword-onlyoptionalskip_empty

skip_empty: bool

Exclude empty items from the results if True.

keyword-onlyoptionalskip_hidden

skip_hidden: bool

Exclude fields starting with '#' if True.

keyword-onlyoptionalunwind

unwind: str

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

keyword-onlyoptionalview

view: str

Specify the dataset view to be used.