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