cf.day

cf.day(value)[source]

A Query object for a “day of the month” condition.

Parameter
value:

The query condition’s value.

Returns
Query

The query object.

Examples

>>> d = cf.dt(2002, 6, 16)
>>> d == cf.day(16)
True
>>> d == cf.day(cf.le(19))
True
>>> d == cf.day(7)
False
>>> d == cf.day(cf.wi(1, 21))
True