In my case dates are starting with day. But Datefinder uses default parserInfo which is month first. i.e. in case of ambiguity month is taken first.
ex. 01-02-2018 is 2nd Jan instead of 1st Feb
Can additional optional args be added to take parser_info object?
should traverse to
as_dt = parser.parse(date_string, default=self.base_date, **_parser_info=None_**)
In my case dates are starting with day. But Datefinder uses default parserInfo which is month first. i.e. in case of ambiguity month is taken first. ex. 01-02-2018 is 2nd Jan instead of 1st Feb Can additional optional args be added to take parser_info object?
should traverse to
as_dt = parser.parse(date_string, default=self.base_date, **_parser_info=None_**)