Skip to main content

Convert various time strings into datetime objects

Project description

fuzzy-date

Python module to convert various time strings into datetime objects, written in Rust.

Date conversion

import fuzzydate as fd

# If current time is April 1st 2023 12PM UTC...

fd.to_datetime('1 hour ago')             # 2023-04-01 11:00:00+00:00
fd.to_datetime('last week')              # 2023-03-20 12:00:00+00:00
fd.to_datetime('-1 week')                # 2023-03-25 12:00:00+00:00
fd.to_datetime('last week midnight')     # 2023-03-20 00:00:00+00:00
fd.to_datetime('-1d 2h 5min 10s')        # 2023-03-31 09:54:50+00:00
fd.to_datetime('tomorrow')               # 2023-04-02 00:00:00+00:00
fd.to_datetime('prev Monday')            # 2023-03-27 00:00:00+00:00
fd.to_datetime('prev June')              # 2022-06-01 00:00:00+00:00
fd.to_datetime('last day of this month') # 2023-04-30 00:00:00+00:00

# Anything invalid raises a ValueError

fd.to_datetime('next Summer')
# ValueError: Unable to convert "next Summer" into datetime

Time duration

Duration seconds

import fuzzydate as fd

fd.to_seconds('1h 4min') # 3840.0
fd.to_seconds('+2 days') # 172800.0
fd.to_seconds('-1 hour') # -3600.0
fd.to_seconds('1 week')  # 604800.0

# Anything other than an exact length of time raises a ValueError

fd.to_seconds('last week')
# ValueError: Unable to convert "last week" into seconds

# Because years and months have varying amount of seconds, using 
# them raises a ValueError

fd.to_seconds('1m 2w 30min')
# ValueError: Converting months into seconds is not supported

Duration string

import fuzzydate as fd

fd.to_duration(3840.0)                       # 1hr 4min
fd.to_duration(3840.0, units='long')         # 1 hour 4 minutes
fd.to_duration(3840.0, units='short')        # 1h 4min
fd.to_duration(3840.0, max'min', min='min')  # 64min

Localization

import fuzzydate as fd

fd.config.add_tokens({
    'måndag': fd.token.WDAY_MON,
    'dagar': fd.token.LONG_UNIT_DAY,
})

fd.config.add_patterns({
    'nästa [wday]': fd.pattern.NEXT_WDAY,
})

assert fd.to_date('next Monday') == fd.to_date('nästa Måndag')
assert fd.to_date('+5 days') == fd.to_date('+5 dagar')
assert fd.to_seconds('+5 days') == fd.to_seconds('+5 dagar')

fd.config.units = {
    fd.unit.DAY: 'dag',
    fd.unit.DAYS: 'dagar',
}

assert fd.to_duration(86400.0) == '1 dag'

Requirements

  • Python >= 3.9

Installation

pip install fuzzy-date 

Syntax support

Special

  • Date now, today, tomorrow, yesterday
  • Time of day midnight

Relative

  • Adjustment last, prev, this, next or +, -
  • Units next week, next month, next year
  • Weekdays next Mon, next Monday
  • Months next Jan, next January
  • Numeric (s)ec, min, (h)r, (d)ay, (w)eek, (m)onth, (y)ear
  • Ranges last/first day of

Fixed

  • Unix timestamp @1680307200
  • Dates 2023-04-01, 04/01/2023, 01.04.2023
  • Textual dates April 1st 2023, April 1 2023, 1 April 2023
  • Day and month April 1st, April 1, 1 April, 1st of April
  • Datetime formats 2023-04-01 12:00, 2023-04-01 12:00:00, 2023-04-01 12:00:00.410
  • Time of day 2pm, 2:00 pm

Methods

Conversion

fuzzydate.to_date(
    source: str,
    today: datetime.date = None,
    weekday_start_mon: bool = True) -> datetime.date

fuzzydate.to_datetime(
    source: str,
    now: datetime.datetime = None,
    weekday_start_mon: bool = True) -> datetime.datetime
    
fuzzydate.to_duration(
    seconds: float, 
    units: str = None, 
    max: str = 'w', 
    min: str = 's') -> str
    
fuzzydate.to_seconds(
    source: str) -> float

Configuration

# Read-only
fuzzydate.config.patterns: dict[str, str]
fuzzydate.config.tokens: dict[str, int]

# Read-write
fuzzydate.config.units: dict[str, str]
fuzzydate.config.units_long: dict[str, str]
fuzzydate.config.units_short: dict[str, str]

fuzzydate.config.add_patterns(
    tokens: dict[str, str]) -> None

fuzzydate.config.add_tokens(
    tokens: dict[str, int]) -> None

Background

This library was born out of the need to accept various user inputs for date range start and end times, to convert user time tracking entries into exact durations etc. All very much alike to what timelib does.

Other implementations are available, but I did not find one that would have worked for me - usually they were missing support for some key wording I needed, or handled user vagueness and timezones in a different way.

Also, I kinda wanted to learn Rust via some example project as well.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fuzzy_date-0.5.0.tar.gz (31.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (538.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (566.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (635.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (543.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (367.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (420.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (411.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (365.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (392.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (538.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (566.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (635.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (543.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (420.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (411.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (365.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.0-cp312-none-win_amd64.whl (213.3 kB view details)

Uploaded CPython 3.12Windows x86-64

fuzzy_date-0.5.0-cp312-none-win32.whl (203.6 kB view details)

Uploaded CPython 3.12Windows x86

fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (536.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_i686.whl (563.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl (632.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (540.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (362.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (417.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (408.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (387.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

fuzzy_date-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (318.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fuzzy_date-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (325.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fuzzy_date-0.5.0-cp311-none-win_amd64.whl (214.2 kB view details)

Uploaded CPython 3.11Windows x86-64

fuzzy_date-0.5.0-cp311-none-win32.whl (205.0 kB view details)

Uploaded CPython 3.11Windows x86

fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (536.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_i686.whl (563.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl (632.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (540.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (417.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (408.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (388.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

fuzzy_date-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (319.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fuzzy_date-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (327.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fuzzy_date-0.5.0-cp310-none-win_amd64.whl (214.1 kB view details)

Uploaded CPython 3.10Windows x86-64

fuzzy_date-0.5.0-cp310-none-win32.whl (204.9 kB view details)

Uploaded CPython 3.10Windows x86

fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (536.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_i686.whl (563.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl (632.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (540.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (417.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (408.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (388.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

fuzzy_date-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (320.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fuzzy_date-0.5.0-cp39-none-win_amd64.whl (214.1 kB view details)

Uploaded CPython 3.9Windows x86-64

fuzzy_date-0.5.0-cp39-none-win32.whl (205.3 kB view details)

Uploaded CPython 3.9Windows x86

fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (536.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_i686.whl (563.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_armv7l.whl (632.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (540.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (417.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (408.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (388.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

fuzzy_date-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (320.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file fuzzy_date-0.5.0.tar.gz.

File metadata

  • Download URL: fuzzy_date-0.5.0.tar.gz
  • Upload date:
  • Size: 31.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for fuzzy_date-0.5.0.tar.gz
Algorithm Hash digest
SHA256 94ba67e77ef79e3261eb2fca1c85a6cee148535728159e53238cdaff5f3cc0d2
MD5 ec6836603b93cd1557c45f18615a66ec
BLAKE2b-256 3a484813dc8b4ec96e8310961d2787dea0ceb65875614fe08ae54c0fa883b571

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f6e1d11885b793ca7945e748e194ed828a2d4c13a0d25af638d5303f0628493
MD5 ff58819718d5eb02fbd973e516f6359b
BLAKE2b-256 47aa9c6c25923e30861735e0b1c401a983391581334de666dd6cab7d8cb4577e

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18e28ae9206259e6c8cdfc59dc6c74f97dba209ad025cc0b4b0ec0e18a20cc16
MD5 481b7638abf7f9d62341482592756616
BLAKE2b-256 098311a70caaba5770cc4d8dc01482bb0bfef57d680fa82f6f1dfa99c2b16da8

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d93baf4cc2c89f784a246b1b942b04c3b66f653a4043a565976536de027c562
MD5 45c3abaa0b08bc14809deaa2328b209b
BLAKE2b-256 7b720ed37b946d29b1345f4c7c9e4e515d018e6ec61388be344fd82d547b8029

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbe8eb67fbe6ed5f3d92caec89cd133a1c9d45a9be2dc06508f78acac652b375
MD5 25d3efe722f6273ddcfa9fd65b0738fa
BLAKE2b-256 da2bcde31f5e0c196adf0468da2c02185823bef9ee3e6790c14ecbef75812654

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 280505775349d22a9109cc58a16305cd8390d44b3bf266b49e216adad58c9e8b
MD5 126c6010c988a32d3867e277d5d625ba
BLAKE2b-256 ce833b54d64d87b00f5a723856dd2f84ab7bcd5e690cb186196554c6fdd19371

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea2eeaf22474b32192e94746c9731cc39b47538fbbfd667963a3e7a8d5800c55
MD5 ce89e1c02f8a84f4b9e960886d40a446
BLAKE2b-256 e44e136f75542c3aecaee79ec2a60b2d57b4f45db5efa749748e1bf94760c5b9

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d31ac253114ed7707136615c767e70454ff4733a600dbb107d2e2d125de2914a
MD5 46ea3378f23cae1cb9442d15b4d52bcb
BLAKE2b-256 5144eff557b27ed40d0ead7cdc4a0a055b509c3d3084e5361b257dbce029a846

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d56bbc3a349b9380730561d034084a01578b09d9f17a1803416109789a07ce1
MD5 89b610a3e305e8723d06d069fec5bf56
BLAKE2b-256 c471e8e5eaedb4989bb5ff6e814841d865372dbbd2be09a8ccacac5209f72928

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f37929f3f8254b073002516388d05fc00b8bb34dc1760a2a37a906a16e827e9
MD5 aeeaf1af94cea6913572d18d64071c86
BLAKE2b-256 2cc267f95b778e6818b4ea1daa90acbb7b9aa1c93958db57304f85ddf031144b

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 842d5ddfd203626936b1a3f6023b120a608e14a7c93aae48926a213035d7b446
MD5 4018b978b2edbf19842297d7e83b0436
BLAKE2b-256 7c601195d9d150cd819f527774865afafe554bbb5d96b81891ff9e4c96b1e860

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 146f52580f75340594c66f945e9d5555bccc4e7667a70b1ac9a8cc0408d27dbd
MD5 9ea5c6f1000690ca1c6b06b823fba127
BLAKE2b-256 b1b81582482b9f65118332b8ad30ab13117678bdfb7e8d32551ece88f564fa55

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6c1bd75044b3fef049e0e9619babf6b853d96c6497c6d1da34074d2287da792
MD5 e451427fa3497f0477a77d1140093eb6
BLAKE2b-256 73ed8d293e2840c7833b9108d69e054ea1bebf4fe2141318e4efd8c3c4690022

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b2fbc5c52253ace650181dfd757cc18ade9a755ca2dcaa7af38285e73bb7ada0
MD5 c6bae0d1de3a97640471fa5ea6e31c27
BLAKE2b-256 f371065aff93769052b7bce4330db2e9e949bf42d2b35fd8252ebc5392b289a9

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1a9089af835df695a85ead4c918e90b49dfb311da6ddfc03385546f1838e92b
MD5 0aa45128a2637bae72415d055dbc36a9
BLAKE2b-256 34944229e1e5a1906b65ee09401dd0650e7e3c5410cffa69d014f7908b76df7d

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f22bf5ddc6545c0b3b2649cabe4bbb5ae402c0b7e084ba26b59d3aa079f4dd63
MD5 dacfd8eaf61789a74a83ce6aa4e67bfc
BLAKE2b-256 e6f05e1d595f3b4ebfca5e444060b3c4be93937982b394b271b5a3f162db4f49

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee1d6a9ac8a300be292b78208748b5b8bfee40e9a142a63f118781eb9dce7365
MD5 410d4c07387c337677fd6fc4912e905a
BLAKE2b-256 c324bf009eeeb3b7c832f1dde1eed5bd9f2d425551bf9348da75d8a8f0cf36f5

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c4394fda09d1db96b528beef895d9982c292ffe04e0d835cb3510b5d34558475
MD5 4a7622fcf8926d2cd3d2ef39b3744a19
BLAKE2b-256 86b9834cc6c505369b1c6ffb44d2704fe74ae1941b679623d0dd873c02b6fa13

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e0678684ddd076a85c814f1279d4d4108ade77c8d4b381fc5852bf703dca592
MD5 f4713b9cbee1650c81f90b1da2af93ba
BLAKE2b-256 d4b414e39cae3ed0793f3020ace8585690c846d73f967573f9bf258619762a87

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 be3ab3a13a50b31684d18b251bb3d9cb19aff2c6eea6ba6a85eb07b9d5fb38b4
MD5 040566aea2556c3aad4f7a98eb46b839
BLAKE2b-256 10d333823e79abaa4ecc9a510d99d2b74dc1c05a22eb303bfc1c5d4ba8e7d756

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-none-win32.whl.

File metadata

  • Download URL: fuzzy_date-0.5.0-cp312-none-win32.whl
  • Upload date:
  • Size: 203.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for fuzzy_date-0.5.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 0f9de53238a21c6ef9d48839f193de6f1d76e00ce357e16e290c414c4805d5db
MD5 6b212c96ae2cfd3784c8bf99f5b4adaa
BLAKE2b-256 f92a32022afcfeae3bc02ee6aeb0c5d8fc887fce7267a0610c98f4879354e2e5

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 153d1679fb4ee6dfe89a1c1e0b4c96eca9e42e7c30b820ca886fa2e3d2d17257
MD5 5828b88fee85dc8885b9c2e917e01555
BLAKE2b-256 01200a3f25f73ee9599ecb0df03b49b6aff46e8f794bf12deabea330ae55ee33

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1cab298864a5607854efc713374f4bdd002a9d9c15bc9dd938f6c1a93caf7215
MD5 bd6a88a686257065ad5f89f7fed907ab
BLAKE2b-256 a523a22abece7afd3cb6d2a2e10fe9134b746e984457a63b5095b668e7e32c39

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f8c80d2e39741d6293330d8e90214c473dcdd6c6d450096b281d7ca1ce1bdc0
MD5 1206201ee7c0e9e231ad6ac160b722ae
BLAKE2b-256 ad5fe2b04dfc9381e52c87e1d2b9e308c6ba990fe8891fe03e75d66337614732

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e23d537d34b68aa050ad0b33c5b2dd2fe60c649207ea6f024650e0fe04c3f4a
MD5 230db4d0bd9b11b5d96f4a9d5d3d8cee
BLAKE2b-256 20797343b39727a14059ef001ced5521dcc40142a554a14686b2e1310cb229dd

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e6a8748f6bc7dc27b233882c5817a0150c36ba7b866a560dfc83e266f200722
MD5 7f0fb6c3f245a4da24740d257a85b22c
BLAKE2b-256 58ea7ef7ebdf47112047964aac15fbe9afeed5264ddf1a805b75c51efcddc1c1

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1cca8ee90b88bca27667c67e8ed99b6be82862cd70e247b20cac8f69f6b9880b
MD5 d446076ca5044324b5846fc052a3498d
BLAKE2b-256 93be00f250042def8d97344fe93fc5ef7c8ce3accf988e29dbf66f7eafb5d629

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b7b121d3e1519ca304fa011dbde27be3edc5ba978cb708d02be9784e81772cd
MD5 d2fccd1a5304fe96f2dd0d8058e12ec0
BLAKE2b-256 ebf7dbff3e4886d456624628cc8511359e38006bb23a65b658c1333e4dd0e431

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22d101d726730080daf3156e661c8b3bfba9cfc460fd8e924a353d57490da36a
MD5 6f599fa6ddd79a92f402b35df82876fb
BLAKE2b-256 1f923d5fa40b161bbfd1eebaf6223533adb8c10129d59cf6ba7050d0afef1143

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7269f231236cbd34075100fd1a8b36efbef1c06f1ca0d9d11300e4b336fe37a1
MD5 ae948851bb9075e32c83ed18d6379a4a
BLAKE2b-256 7a1835e373f1f94993dd50b2ad48e62e424032461cf5a8306165c8a4d2b7bcba

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 27ac3b97f9acb8cf922bf6a9397ae0c8d2e573194a3b953e60c85ee7b77ac5d2
MD5 23f2aa094cd76d4fa5f1068dd5f10405
BLAKE2b-256 74133de431be765d1ed488eea89d7269f5dfb4817c4bd6286accd28781deaf0f

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f14036c215d23cb74d87163f54fa49cfaac1fa80ffb641801f2c5168c998315b
MD5 fc2e5bb05e67d5dc7ebb6024cfec0d57
BLAKE2b-256 6d6f771815b8c27bcca68ff94be895818174baa05b4736d1b647d7632714be58

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fdf00c3ff885bbfe132f531894bfe9b70bf39b66c96417fe8da6aa7d82843610
MD5 23dcb67f02131cab9995291282637363
BLAKE2b-256 f9c6bab4adc99602448643f3eaec7407edeef4b9cf511fd06d49ef932e2d230e

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 e61156ad834e653f49ccd9fede71a07ab2e2559140d8f035f6d7145c171da3a2
MD5 2366945bf2d502fd032726bdf5ddd30a
BLAKE2b-256 0f8d2c55ed16fd289dec2acda960d094042f8bf93a5e6bed43a148d18018414b

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-none-win32.whl.

File metadata

  • Download URL: fuzzy_date-0.5.0-cp311-none-win32.whl
  • Upload date:
  • Size: 205.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for fuzzy_date-0.5.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 aa54f098668431cfdd67bd2f333bbbf045ec702482e7de350ea80cf9e658a922
MD5 1b83e01b05e0f92be9b7da14fe5df7f6
BLAKE2b-256 0aa74d72ebfb7d930c2bdd669491602bf014edb4550433bd21766a9df8e9a7dc

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 409c9a84a79bf3a28023cfd04c8472b20beac14957407d82c2563655321aa94e
MD5 9e9f4515e5989d09ce57a78ac0542d27
BLAKE2b-256 2a5c0c93034124d60362ebd84c0204b8b329ed3863db7bfb64d2c7b474b4ba7e

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58a13604161ba920ae4bd3f139717d24ab5357d5d001f8e7e8fbf5a97c018a80
MD5 0768981043a57a962996cee7aa835b97
BLAKE2b-256 6d124d8fda45cfcb4f33c5b54165205a7840f6f711d346456a040b68c17d6ce5

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f13bac01b581122637128484482b63d5d97eb0f7e10c2376ac8c2d65becc13d0
MD5 8b8c4f5ca9c625b5c49f9435ad37495c
BLAKE2b-256 4e7ea00beaaa085a9c561af3b742b3a9ae89db46cdafcf4aa2343aba34e23d85

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c89eea7bc7945722f26a0d36b38d130631e22963375bc4dfc6e2e22d757acb52
MD5 98bda249c32223383027d3e9e34191f0
BLAKE2b-256 d837fc3915e15158e3fe50c1237bfeb9ed378b80706b5c8ed15a6a074705f916

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6fb5ca7f90911a466890ef8a7f2a9daa3197953c613016ae8f84dae8e141d10
MD5 412ae0142284e76a6ecf7e0c0603e81c
BLAKE2b-256 9ebc2b45f34639cd45a8d461a578cb09311dfff2a54d529339e7b3c1db8a4d0f

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 caad973083385a25ebbb2a081ac4545dde37c00bcf1be3e2f860795bb5843923
MD5 165b145c9369f384573c598b8dd7a0c9
BLAKE2b-256 7ce6d2b4911848db677eab68fd1e2245eaef0ce8da9a995dd8cde3d570c0bc0f

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ee4e4e61ddd84093a557c316f3f2076addc663f390ec953e3a5b440d93820eb
MD5 d5a55a6a8a513e44eab3b5078e1cf3aa
BLAKE2b-256 55fedc9a38dad805678a1c8567b63e8470d7ef53857f3a064dea2653f3c23c99

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4820ed6c287bc2ec835e0fe62015eb9a4f8e55a991971a4fbb7ff06433dc8c63
MD5 94aa13e8a8398e12d7a0ba6beabe415a
BLAKE2b-256 8e8d0892ba0d8fcf7446179322bf2327b53a628fb088636c2b29f96d8dd69a62

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0f36eeaf2edb700b9ff59b92f0f0d2c7e8e74f7810f558df774e60062d82517
MD5 26bb074d73d69678cbbf5920f39fbc77
BLAKE2b-256 e403f2b08701322cd33913b999dc7b74be8555dc43bbecd8c6be2b28397ef21c

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a5e02d563866c48dfa03558301e7cc449881a10a90d3470fb0d298b5d7d0c61
MD5 d4fac184624542eacd96c5c8a82878a1
BLAKE2b-256 f2999c824ce03b78a5033a9977fcdaef2e907abee74e8f44688dad7336076e81

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d34346bf749ce8e658ccfc4f9f256cc5caa07430cc2add5c3bd2b2e3f6f81bb0
MD5 c1e04e8dffd285e8668acc15db324507
BLAKE2b-256 f9394f898e84f8a3f6b1228db22cc58e336da7b005538338838d25acc3c504e1

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 385dff90821bc99fd57cafe40bde00a48b88990ec63eec524b7936e6b8960b9f
MD5 f62bf3d9bf527401d134c85f6130f147
BLAKE2b-256 a8c2c7919679cfbf295a4f219747257fcc7da4ad2729e6e4eb59044961a7ce7c

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 908ebf30cd1ee968039a251f46a207d669935ca6b64d63c396e11b7f9227574c
MD5 dd515b17cdda585403eece42ebc11b68
BLAKE2b-256 430beab020275d3be5e07d4b2ed7c9ed61dbe9816101db5508775c80201d6218

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-none-win32.whl.

File metadata

  • Download URL: fuzzy_date-0.5.0-cp310-none-win32.whl
  • Upload date:
  • Size: 204.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for fuzzy_date-0.5.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6c07e9ef1c8d568ece6aad65358dd4af988234baa6d73f51c44268ca64b380c2
MD5 bfbea5dedb8095d59ef3fcdd6a57d23a
BLAKE2b-256 6a0fe7d92da4047ea3ebf55bd91fb1c5f219f66d57cc580a0bc3106fa2386464

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f213d32e565dda8abd5414ab3c086feca208acea37649200ecdb3eed813dc24
MD5 d6ada42d05a9af0902bb4fece3628afa
BLAKE2b-256 dd23181c963c1506d72d72cd4012bd11372727b7b0193e1ded2dc68b71d5d3ac

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1597a25fff6fbdf492362cf99fa4ac0b71de72b445c15103c2f4ac43bb64b11
MD5 9084fd58d54c52306c011a69a8d7114c
BLAKE2b-256 ebc096264545f9b08a480558b3f4725843faf8a452da3b91767c00a9cecd75d0

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 008b970aab20d99d69f57dea1cbdea3bbe44c845a1d3ab699cbe2921770d3eb3
MD5 d918d66c9113df1e238b1583a194843f
BLAKE2b-256 96d273dfcec2321f62880feecee2986a2af110bc8fed587da4c37bef6bd10329

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cf356a8c511aff3c9dd44e3e8a17ca1ad014a18d27cc78aa8d5c1df6ef3419d
MD5 7708ef4813ac58d1b1c0c873884aecd5
BLAKE2b-256 74434ac689ee54f9f46751c94eb725dff83fc51ac730ac6a21a1e59ce3ed420e

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45c4f2165f9b947758f7518900afde10a4e9e79fd70cb9be34fea57a3edb7aed
MD5 705a916415a7453adee46dfc39693bd9
BLAKE2b-256 a1973a4e2ed892c829591053399c99f27e29b10e0a509245ad6b81010f079cec

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07fd713bff6822465e820e2f8710120c260a040b3ad4c77a658f024b2f2eff6f
MD5 ef7ce1cab22530477c661ff29782e406
BLAKE2b-256 7248a4dae740a398962543dde5034bcb32b90e96202bce1106a286075dac0520

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91a5c105f899fd8e58945537c4613272f5230eb162995fa3251cff51dfb02f99
MD5 0ce3fa058cc24f2d166d33846fe2d263
BLAKE2b-256 77f62db8c9a27b2a97160dd69116a95be3732d02ef6301a6119c42957c95f98b

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31011b6a9a7f9f6bf45daac0ef8ae70b8d282d73831e2d65add8702d655f1bfb
MD5 e1a28d4f2b256886b555059188ac59ea
BLAKE2b-256 2e8d7f37b3b90d4e6cdecb0c093fe23eda413956eb02c9e23efca67579d425c7

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcbfbb0064281be53a755491ffd46d1cb8ec07dd6241c553ab8ac12c6537ca03
MD5 b3e8fc499852b8ec174822ee50926cb2
BLAKE2b-256 042d91bdcad2adfeaf4e29196fd6ce65f86acf114ec9d8b14a29715f6dbebb95

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b64df3fe0d26a75a167805d98f7b7660a21d122ffab2fabcd9182b6d42897bcd
MD5 3a29750bbf8e17cf7337f33714343a95
BLAKE2b-256 7694e712b1505bbf771e77dd376f3d2102206f366570dda9d6c2113b0374728f

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ad54979671d9e9f7e52aac621d593ecc202f4b138d490f92ea92ece1bfbef93
MD5 5f13c3e9296f8b805f930d8a9a72678e
BLAKE2b-256 29678ef4d1591d2a7b3817e735116c6874fec45c3c8586c6a056c7c172fce8be

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 4bff24e0ebb8422d391d293dd7cadcec0b4b370dd4937e7ce1158fcee8797174
MD5 0711a07fcb288b21f447e5731003ee16
BLAKE2b-256 cb6eaa1d47120805020083775df72a9b214bf1ed3dae327b0cdb499234a6584b

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-none-win32.whl.

File metadata

  • Download URL: fuzzy_date-0.5.0-cp39-none-win32.whl
  • Upload date:
  • Size: 205.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for fuzzy_date-0.5.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 15729892c5b8c5fbcbaead3e7a2301fa885651ae8dadd2774395b2da5b55d605
MD5 03a01af86ac79987e68a8825948d9dbb
BLAKE2b-256 74517ed59a78a7cdc0da0c40ad7b2f461db5ec05a477043bbe8691650fa98988

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebe21eca8dbcf8633867f6bc32fd831b69626902a190a8c883106dfe8b7bbd20
MD5 966ec64da91648089fcaf658586e3060
BLAKE2b-256 b5e60b47fd3ca73023d43fd964173f664473d4318af64d43f7ac96884486ec25

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7072797e934915e8c82e154f2ced2fc1574d014a010c7e3f100f7298958a8dd8
MD5 e4743360f5124e4c093d0850985b4983
BLAKE2b-256 075540f79565f73ece9aac5f4888cb90158ed552d536b74f0c121e0f990a952f

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d895162ca99113a0e5b64643353a41cf6e0d1a3876822b873e3d1bcaa31cdff7
MD5 5a417921fbaddd02b1ba3e87d712fd34
BLAKE2b-256 3de1f661a0806f02eaa89b1e938b52473b2d28ddcf98c883f2616702cdb8e407

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cde2977506e54266cb6543c82ce5b28d4fc50ea436390b790f96bf0fc7c6dab8
MD5 6d15715f4f3a1aa8a9eda1f64a75f0cb
BLAKE2b-256 9f497d6e9cb292705e06e3ad73b8291fe368b2dbd92195a33fc12b5aa59196c2

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d74e839b13ef6fefcaf109783c33480a835af513640ea838feb97ec9591bd73
MD5 791615b7ad4b3405e8bbc70c0c954abc
BLAKE2b-256 66e96073f0fea26704351a7ac19df771ae3aa100a95120cfb4429962089a7f9b

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 747e7735b459227e499c64b8dd95d91401174f1d3eb841430606e7c7f2523895
MD5 21274e6b8e5943b4cfd2163af3e76f6b
BLAKE2b-256 69209b6048d7288683c6e76b39608ff42c2109bcf75b74ba5843c6ee1b3db2b5

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf00394652e50a454c42944d1812c78ccfcbd59d832590f47dd63d44467e4e8d
MD5 e53f5602b068e788c32b84ab5f926618
BLAKE2b-256 81e159249ed90ecaa78a088138c412261d124ea94517846cf9abcdd840c909e9

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c999570ec15e35603185c067aa5320f3b0b52910efa108790e0bde7f34e035b
MD5 ff7fdcc383add89e31b2c4bbcfd4acb3
BLAKE2b-256 b1b033ac6d7862114e2b56139931a775c4585496b354a635e601f91f15d706fa

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fff890eb5362df4a81c38981f11d5d5b9a9d7bd8d4e02d23e4badbc29dba491
MD5 283f366cec2749efe9de8827690cdc4c
BLAKE2b-256 0cd0957082af083bc7fa1039a516c02bc37a05ae23d4020db1f08e50e541b558

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de96d1160d03620d81089d2499f4ceb3962c72de04a99301595f1272b49093eb
MD5 5dd97d56b19145e3f7a7703cf6b9484d
BLAKE2b-256 2476d2c0736c04dd0561a3f2ebcd296b38f0250f14a4715bf1d79329533c0747

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c2a401e8fc8a11194e7b1eb0a82769800ba809262c53e485b0a118f818f7e43
MD5 7abc2421494aca3caa8cfd9f94d0a2a2
BLAKE2b-256 7303f88a5e125cb443303e2616109c12b82db3be7e732d99bc46a82ac92d245e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page