Currently ChronFiles.search_period includes files from the entirety of the end_dt which is passed to it, if dt_delta is 1 day, or from an hour of the final date if dt_delta is 1 hour. It's useful to be able to make this end date exclusive, so that an end date of 2021-04-03 includes files all the way through 2021-04-02, but none from 2021-04-03. The current behavior is still the default, but passing end_inclusive=False to search_period or read_period is now an option.
Currently ChronFiles.search_period includes files from the entirety of the end_dt which is passed to it, if
dt_delta
is 1 day, or from an hour of the final date ifdt_delta
is 1 hour. It's useful to be able to make this end date exclusive, so that an end date of 2021-04-03 includes files all the way through 2021-04-02, but none from 2021-04-03. The current behavior is still the default, but passing end_inclusive=False tosearch_period
orread_period
is now an option.