base_dfop#

Base DataFrame operation.

jsonpolars.base_dfop.to_dict(inst) Dict[str, Any][source]#

Convert an instance of BaseExpr to a dict. This dict can be used in BaseExpr.from_dict method to create a identical instance of the original BaseExpr instance.

class jsonpolars.base_dfop.BaseDfop(type: str = _REQUIRED())[source]#
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.

jsonpolars.base_dfop.parse_dfop(dct: Dict[str, Any]) T_DFOP[source]#

Note: you have to import everything in the jsonpolars.dfop module to make this work.