cf.month¶
- cf.month(value)[source]¶
A
Query
object for a “month of the year” condition.- Parameter:
- value:
The query condition’s value.
- Returns:
Query
The query object.
Examples
>>> d = cf.dt(2002, 6, 16) >>> d == cf.month(6) True >>> d == cf.month(cf.le(7)) True >>> d == cf.month(7) False >>> d == cf.month(cf.wi(1, 6)) True