Hello,
Is it possible to search for a date range with pybis? Using release 1.37.4. I couldn’t find any operator, but maybe I missed it. Using the same property in the where multiple times also does not work because it is a dict where the key is unique.
I try to achieve the following:
o.get_objects(
where={
'event_date': '=>2026-01-01',
'event_date': '<=2026-01-31',
}
)
Thx for any help.