Skip to content

ExprDateTimeNameSpace.month

Same as polars.Expr.dt.month

Source code in pyquokka/expression.py
349
350
351
352
353
354
355
def month(self):

    """
    Same as polars.Expr.dt.month
    """

    return Expression(F.month(self.expr.sqlglot_expr))