column#

class jsonpolars.expr.column.Column(type: str = 'column', name: str = Sentinel('REQUIRED'))[source]#

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

class jsonpolars.expr.column.Alias(type: str = 'alias', name: str = Sentinel('REQUIRED'), expr: T_EXPR = Sentinel('REQUIRED'))[source]#

Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.alias.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.