Skip to content

v2.0.2

Latest
Compare
Choose a tag to compare
@ohadmata ohadmata released this 27 Jun 12:53
52e3f00
  • Improve inference time by removing non-relevant date-time combinations

  • Date only patterns list (Do not attach timestamp combinations to these dates)

  • Do not attach timestamp combinations to static date formats

  • New dynamic + static date/timestamp patterns:

      "%Y-%m-%dT%H:%MZ",  # 2024-01-20T11:30Z
      "%B %d, %Y",  # January 23, 2024
      "%b %d, %Y",  # Feb 17, 1995
      "%d %b %y, %a",  # 10 Apr 24, Wed
    
      ["%Y", "%m"],  # 2022-07  | 2022 07  | 2022/07  | 2022.07
      ["%Y", "%b"],  # 2022-Jul | 2022 Jul | 2022/Jul | 2022.Jul
      ["%m", "%y"],  # 07-22    | 07 22    | 07/22    | 07.22
      ["%b", "%y"],  # Jul-22   | Jul 22   | Jul/22   | Jul.22
      ["%b", "%Y"],  # Jul-2022 | Jul 2022 | Jul/2022 | Jul.2022