list#

class jsonpolars.expr.list.List(type: str = 'list', expr: T_EXPR = Sentinel('REQUIRED'))[source]#

Ref: https://docs.pola.rs/api/python/stable/reference/expressions/list.html

classmethod from_dict(dct: Dict[str, Any])[source]#

Construct an instance from dataclass-like data. It could be a dictionary, an instance of this class, or None.

class jsonpolars.expr.list.ListGet(type: str = 'list_get', expr: T_EXPR = Sentinel('REQUIRED'), index: Union[int, T_EXPR] = Sentinel('REQUIRED'), null_on_oob: bool = False)[source]#

Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.list.get.html#polars.Expr.list.get

classmethod from_dict(dct: Dict[str, Any])[source]#

Construct an instance from dataclass-like data. It could be a dictionary, an instance of this class, or None.