Let's say we have 3 date strings, 2 of them with ambiguous format and the last with unambiguous format:
2015/1/1
2015/2/3
2015/31/12
If we can pass these 3 date strings into dateparser.parse altogether at once, then the first 2 date strings can be parsed confidently because of the strong hint from the 3rd date string. This will be very useful for guessing the format of date-like fields from csv files. Something like https://github.com/hi-primus/hi-dateinfer
Is this actually already achievable with the current dateparser?
Let's say we have 3 date strings, 2 of them with ambiguous format and the last with unambiguous format: 2015/1/1 2015/2/3 2015/31/12 If we can pass these 3 date strings into dateparser.parse altogether at once, then the first 2 date strings can be parsed confidently because of the strong hint from the 3rd date string. This will be very useful for guessing the format of date-like fields from csv files. Something like https://github.com/hi-primus/hi-dateinfer
Is this actually already achievable with the current dateparser?