woom.util.WoomDate.is_month_end

woom.util.WoomDate.is_month_end#

WoomDate.is_month_end#

Check if the date is the last day of the month.

Returns:

True if the date is the last day of the month.

Return type:

bool

See also

Timestamp.is_month_start

Similar property indicating month start.

Examples

>>> ts = pd.Timestamp(2020, 3, 14)
>>> ts.is_month_end
False
>>> ts = pd.Timestamp(2020, 12, 31)
>>> ts.is_month_end
True