Skip to content

Releases: ohadmata/shmessy

v2.0.2

27 Jun 12:53
52e3f00
Compare
Choose a tag to compare
  • 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
    

v2.0.1

09 Jun 09:09
f1e3409
Compare
Choose a tag to compare
  • Set min/max boundaries to integer to be the values of BIGINT (+-9,223,372,036,854,775,807)
  • Enforce casting the float value to np.Float64 instead of any numeric value

v2.0.0

29 May 12:10
fb426f1
Compare
Choose a tag to compare

Major release. We broke the API in order to make it much more simple.

  • All of the configurations & flags pushed to the constructor with default values.
  • Date / Datetime bug fix that improve the infer duration - do not try to validate all of the sample data after the first mismatch.
  • Create dynamic patterns using much more combinations than before for Date / Datetime types.

v1.3.7

28 May 13:24
90dbaac
Compare
Choose a tag to compare
  • Improve datetime speed recognition
  • create datetime utils for core readabillity
  • Dynamic date types

v1.3.6

26 May 10:44
d5c3bc9
Compare
Choose a tag to compare

New date format:

  • %b-%d-%Y

v1.3.5

26 May 06:22
2c1a8be
Compare
Choose a tag to compare

New datetime format:

  • %d/%m/%y %H:%M

v1.3.4

23 May 07:25
02b7f90
Compare
Choose a tag to compare

New datetime formats:

  • %B %d, %Y
  • %m/%d/%Y %H:%M

v1.3.3

30 Apr 09:08
177a249
Compare
Choose a tag to compare
  • New datetime format (Include UTC offset): %Y-%m-%d %H:%M:%S %z

v1.3.2

29 Apr 13:39
367804b
Compare
Choose a tag to compare
  • Use calamine engine to speed up excel file reading

v1.3.1

15 Apr 07:22
9f2a455
Compare
Choose a tag to compare
  • New timestamp format: %Y-%m-%d %H:%M