column#

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

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

class jsonpolars.expr.column.Alias(type: str = 'alias', name: str = _REQUIRED(), expr: T_EXPR = _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]#

Create an instance of BaseExpr from either a human created dict, or a dict created by the BaseExpr.to_dict method.