Skip to main content

Convert various time strings into datetime objects

Project description

fuzzy-date

PyPI version shields.ioPyPI download month

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('past 2 weeks')           # 2023-03-18 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, past, 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
  • Numeric dates 2023-04-01, 20230401, 04/01/2023, 01.04.2023
  • Textual dates April 1st 2023, April 1 2023, 1 April 2023, 1. April 2023
  • Combination dates 01-April-2023, April-01-2023, 2023-April-01
  • Day and month April 1st, April 1, 1 April, 1. April, 1st of April
  • Month and year April, April 2023
  • 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.2.tar.gz (35.3 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.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (543.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fuzzy_date-0.5.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (571.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fuzzy_date-0.5.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (641.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (549.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (427.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (379.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (398.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

fuzzy_date-0.5.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (544.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fuzzy_date-0.5.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (572.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fuzzy_date-0.5.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (641.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (549.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fuzzy_date-0.5.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (428.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fuzzy_date-0.5.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (379.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (372.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl (540.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_i686.whl (567.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl (636.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl (545.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (426.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (414.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (374.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (539.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_i686.whl (567.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl (637.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl (545.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (369.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (422.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (414.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (375.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (393.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

fuzzy_date-0.5.2-cp313-cp313-macosx_11_0_arm64.whl (322.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fuzzy_date-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl (332.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fuzzy_date-0.5.2-cp312-cp312-win_amd64.whl (216.8 kB view details)

Uploaded CPython 3.12Windows x86-64

fuzzy_date-0.5.2-cp312-cp312-win32.whl (208.6 kB view details)

Uploaded CPython 3.12Windows x86

fuzzy_date-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (539.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fuzzy_date-0.5.2-cp312-cp312-musllinux_1_2_i686.whl (567.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fuzzy_date-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl (638.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl (545.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fuzzy_date-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (369.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fuzzy_date-0.5.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (423.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fuzzy_date-0.5.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (414.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (393.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

fuzzy_date-0.5.2-cp312-cp312-macosx_11_0_arm64.whl (323.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fuzzy_date-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl (332.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fuzzy_date-0.5.2-cp311-cp311-win_amd64.whl (217.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fuzzy_date-0.5.2-cp311-cp311-win32.whl (209.0 kB view details)

Uploaded CPython 3.11Windows x86

fuzzy_date-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (541.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fuzzy_date-0.5.2-cp311-cp311-musllinux_1_2_i686.whl (569.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fuzzy_date-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl (639.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl (547.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fuzzy_date-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (370.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fuzzy_date-0.5.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fuzzy_date-0.5.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (395.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

fuzzy_date-0.5.2-cp311-cp311-macosx_11_0_arm64.whl (326.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fuzzy_date-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl (335.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fuzzy_date-0.5.2-cp310-cp310-win_amd64.whl (217.4 kB view details)

Uploaded CPython 3.10Windows x86-64

fuzzy_date-0.5.2-cp310-cp310-win32.whl (209.0 kB view details)

Uploaded CPython 3.10Windows x86

fuzzy_date-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl (541.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fuzzy_date-0.5.2-cp310-cp310-musllinux_1_2_i686.whl (569.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fuzzy_date-0.5.2-cp310-cp310-musllinux_1_2_armv7l.whl (639.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl (547.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fuzzy_date-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fuzzy_date-0.5.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fuzzy_date-0.5.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (394.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

fuzzy_date-0.5.2-cp39-cp39-win_amd64.whl (217.7 kB view details)

Uploaded CPython 3.9Windows x86-64

fuzzy_date-0.5.2-cp39-cp39-win32.whl (209.5 kB view details)

Uploaded CPython 3.9Windows x86

fuzzy_date-0.5.2-cp39-cp39-musllinux_1_2_x86_64.whl (543.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fuzzy_date-0.5.2-cp39-cp39-musllinux_1_2_i686.whl (569.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fuzzy_date-0.5.2-cp39-cp39-musllinux_1_2_armv7l.whl (639.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.5.2-cp39-cp39-musllinux_1_2_aarch64.whl (548.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fuzzy_date-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fuzzy_date-0.5.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fuzzy_date-0.5.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.5.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (370.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fuzzy_date-0.5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (395.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for fuzzy_date-0.5.2.tar.gz
Algorithm Hash digest
SHA256 24118a1a77816da136f40cdddd4d955c0b1120f41986c11c10d563d16fa7720d
MD5 389885aa9a441ba4da68b77469de7f70
BLAKE2b-256 13b0318bca56befb69611afc7a2141b2b081639fed71d562f9dd17f1ea024709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cc8fe87d1cfa5f24f441595a47df1a5414614996602c053b07ec9b8a7788014
MD5 a0420a833b351a1db97c5e43afc60a58
BLAKE2b-256 3ce95d43f5c2283e91aa285796e8321dff5b14b7f0ebba97aef339da142ba8a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6335d823c0ef438cd094e0793b030c4f70b3bf6cb52258da256c8c202e258d50
MD5 53e4dbaba2671812029d991a75341503
BLAKE2b-256 48a553b2290de33c3035f236a5b6311ecf98259f74f1dead959ec0d1958f700c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b6e02c6eafea2d2053ba7512754c6cd7a4b7cc562f344f440dfbaf248656087
MD5 c7ea2fcadb549280313af49b469d1f20
BLAKE2b-256 6c19878a1c121277c435ed489332ed39d6a598d08b20aa2c4b40dd83341aee7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9470afe422f845fc27431bee2348e09f68846a503bc498472b470a46c948ca8
MD5 6b43a665d8079f886f7eb314abfb37c4
BLAKE2b-256 e43e1033ee8dcbabcc407997564ae39b8810ea80de06b76686132a36417d44f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d36f6f4afbea3b990fd9e262d6ead7f58786ff930b0fb3c8ca57c1957a300bf
MD5 2228ed3280e5c0387e92cf9de08ad49f
BLAKE2b-256 09328fafdd22c679fa286cf5238c05f7b1ea406b4d9db812a55dc3a8241d93cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97471bd0bee47ff9e45000dd716cc2cb0653251ec9cabcf472aef9405dd6f9c2
MD5 9f3299b38a80176dd59da2f6e324e1e0
BLAKE2b-256 07beb83d518334f0cf1fbff0a5ea5579aa612308bbea887ac2a5f222112d03ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 499f1fd968c548984a182e2814eac4ffa91642f49a3a2a4ff7db718b4eefb37d
MD5 1398bd1a0c91485288337ad6748be5e8
BLAKE2b-256 14cb9ecd5baae607c30bcf059a92bfd9a2350a01730f723b7bde9d530d77dfe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 149d319af42035ed0aef9f3c5e7ae90347d94f1a7bb9e32390dd79f429f6bc69
MD5 a11f1a427dbe1e29517b968cf0add4ab
BLAKE2b-256 f0a062af8869946bf28805cd6db04d7051e750472925ed1591eeecb07cf25645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c79fa803712ae9526ff6833c0ef14813ef6503d7f5d94b0f4de3fd265ec5907c
MD5 7adf3817972a2e0c4cfcfa767cca3cf0
BLAKE2b-256 e96004aad79c43ac589df9c787b92b9555c2be53ad86e37320c2dd626c1a893c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bbfc90e889d5622c53cee3e23739a952e8f80d519587b728e50b9fa6ceb6342a
MD5 0e6320a32571c3c295b7b6a02f2a8bdf
BLAKE2b-256 1f10b79be4b3bf9aa153b4f24797ce39db344299b0a03ab09ab1f654c5488b98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7c2dcfe21d2048daad819acb2d5327821209e69c712769bc2bdee957a12d276
MD5 874c731ef4ef86759568da48b26883df
BLAKE2b-256 f3e22e3dcff85f26be370fc8ae482dcc5c468211530a8beeb869b66c6915a21c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c28bc99a45732b42ced7f5b016a96a649bf2408edf164347cb1eebdbb15f8d0
MD5 eb906afd25b51592486fa004cbcd5b0f
BLAKE2b-256 bcdbc0e39d9ce0600fd1df5e207b1d8a8fb45bb56680bdfa018a7e7888a956dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b06fcfcad2e7ad9cdd7402bfc96629a8c9464f9553a9cf147e5a91ade0775024
MD5 9b060b421baeac63c1fd213f4b5369a5
BLAKE2b-256 48da2dded3f8f617d667f2be9e8c2681cfbaaaef16fac5082654cfb6ca137d87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9b12a86cf86d23a7972367f6fc622c02ff29fda100923820c4cc2ccdc18b04e
MD5 e2165fe46ae33d60cf68c9aa02bb3f86
BLAKE2b-256 b5f58b6767bcb726666420d2a5022b85dd61a6d780514478b3b4310353b03f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b302151a65979f61a24bf2f3994325499408bab45bfec9b2645f77c8b07a5d7
MD5 ddf5732ec2daae3684afea23a407cffd
BLAKE2b-256 9fe164ff263aa8e1da09bf8dc982ee6c4ceb73441ce04d804fdcd9b1f8e3442a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de88b15b573c42656dc85b376de3c60b1adfc5d06f7fd2ea271e41f7a0cef467
MD5 01180e0efb27f9586723510b0fd00b14
BLAKE2b-256 825d022511b86d8d2f2204ead77aa206a2b763eeaea16f5e78715cb8e538742c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63a59e433ec1e45629579406ca255947969a19839a651549088c5e8959ed8077
MD5 53f2404c26a4e1b88b4f94b02424546b
BLAKE2b-256 0c16ae91085fea4068d9d9e7e66fa2f8d3863e8b75d3170b5a1fdfa38262faa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40f1dd2a46654a7971d29c9ca57967b5408040aa788a656795a7903cf1ed80ac
MD5 05fa8f093252e187a05791b79b17900f
BLAKE2b-256 a065cdfd21729d19104a8357bc321286593bdac55f371a21a548f156762ab568

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7b8e45cdfa9d04c14de58cd18bc54ee12167c1a47686630c46f90758138cd13
MD5 22ee9ed3af616a80a946a8a46fe4fc15
BLAKE2b-256 e96a59bbf126986d5751dce566a761f142de28ef0823249ef7741265cd1c07dd

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 098d185794e796c165fc52d7b112ff61e24f0086742ee09a2f9f403a78f30fcb
MD5 98c6f7ae871608308bd241c9db324388
BLAKE2b-256 5390e4c65f2356237957e23e7e898a23a906fc8c6405b9ad3b58ca34343ec6c9

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b9df521606a1e5c0790e6f5e74cd397d054ab493e44524205ab0897fdbc697af
MD5 e5c63ac6a3500fe7c0c945f43f0c7975
BLAKE2b-256 0f60c0e3dd83dfc84d2ed470187f9982a5ef4cd0c567abaf83d250359ac2ccdb

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00c4cb8e98bf474adcaca34a096035dd952814dcb83fb6085524c61bf1d2b5a4
MD5 31425c5bde861a71fd6f926794bd4edb
BLAKE2b-256 a8a10465c3c24e87f1c71f65058e99f34910ef4fdf00ee4cf44ffa541b218951

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1082e80151a1a4a548c28ebe696d71e13bc993ba095a6692ab99c1b1da0846bb
MD5 9e000f4276d53128fc7c53c98198597a
BLAKE2b-256 0ca9e7398e6cc9c3b30b7ea51f215ae479b61bfe70a5d8cba699cdb262a1ceb1

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 333e66adba32099aca1cff928ac930bd021173d2f95487734c261be749f81d48
MD5 b666083de1ebb68f61f74177ff87605b
BLAKE2b-256 3e17bb6d8be6a7d152018bb7e1cc3e1a97d25cdd2d332049ea135952cff7bbe3

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e04d743579a2fb83b5d0ce441952e2756f26513999c46e040ae119399d5f1582
MD5 99835fc2581488414b4b714526c98cb1
BLAKE2b-256 97813bf2a2b00e187df02521dfca1d8320210ee32215e3f5e1f52bd6c0fb315c

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbbbb2af802ad9da22f5a329db40e4cca85ac53d8b9e9e8b9cc107994fcccc2f
MD5 f7562fefc8e8ac5e6189286fb2bb7176
BLAKE2b-256 c07dc605125b6f89ec2ce68c5b0882946d42e02e981e55c49fe9facf718de229

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c00e9dceafdc1e65f96a84e272ad35b96528458750779d7b1312e2ebf7dd3374
MD5 e68961522d22357ae5343dedd879fd12
BLAKE2b-256 3ae4886b3bfbbeeda65cf790cd5c3ba7ecb937a078afebfe287aef1fcc1e58f7

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1953cfaa502f5841e5d1b844798f7ac28ef2d7886bf604ffe64cf6084645b26
MD5 3407c3d19b51fd52aeee3188403b7600
BLAKE2b-256 6e07478f608d283150f22e3bf952bb654d168e7c715fe15df985c82dd171c177

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e313556796a296410943e4adf6e1293ebcc9b465024fe74a6640c9b2a0fb3bd2
MD5 03616d0349f385a1fca33174780d2223
BLAKE2b-256 d70e58f82ba49d5a2e5ba90682a0c1e1721a6130f2e021d49b456783cfca62e3

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ceff04d90b20eadfeb5bb39e035523ace92dec0f54850b84c77a7e9513f32394
MD5 93e16648c4e46190adb4f8620edb4aa2
BLAKE2b-256 62541c776fa23923d0f83990ee1a0212235c13efd269f36536868d6316127715

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3bd527894be6bbd9917a99d8414a0cd1a7b25d0a9b9d330046fe0b120ea3341
MD5 b9f38a471d0d3a05667a8b99d8548da9
BLAKE2b-256 2e988b56053aaa4feb53434b96930f7cce50ada4ba935f2bf158846ac42b5457

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 536560000036abf77535e330996ea69bcde566823729704d13497499e62a521f
MD5 f7859c5c5913f35a749e067b6505f8fb
BLAKE2b-256 b36800b3348a30219de4d485a9a15dbcce797b919c252da3c0dae79e948dd14f

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a66f4d9dd9361f73773e13ed29dfbd4f786817af60bcf3c864e343e8f2e8a82
MD5 86d894529349cee0062585165a9d377d
BLAKE2b-256 1a61c9207cfbe05b92d021c67c18cd9f09044b175b26b41c04e3f521acb0d582

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 110d098e5f1241e9801f202cb7ffd5dedf9795ca04839c3de995d23d845c499a
MD5 237f3f63f2f21792cf91459d3785d7c7
BLAKE2b-256 a841c8e218e159b2182767de4171340bd3cbd0de6064403509bea3c97823d859

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c23990fae9e5be4f3b6b1747af5f39c85cecfe46239e931478f8158cd0967f3
MD5 04a1b0fcdc8f2805f22df54bed790bde
BLAKE2b-256 47e366e5256885a440c80266fde2bd243ec1385a80a81ed532096bfb74108528

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e62e3f34b0f304ff27c58790abe672194a7994c54f77dcf3f6add0ccd031ebb9
MD5 48cc46827062fcbaae5ab0fde05a014a
BLAKE2b-256 738fa3ec4d7973c39ee2eefde654afa99e519da5ba4de0804dbc9428e5b82707

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa4a8478d5f47f91ae53d6db5fbfba265a541eb5c58e99a9387566776e145357
MD5 2c17e042b654d000d9024ef522339ce2
BLAKE2b-256 10a39ebd41414cff4974d4741fec97cfe5774808b4c42800206597c095cac0e4

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7864e4ab09e7f1e8a439789fd08445d576445ce6c23646d7e277752a65061c40
MD5 d6f83b7f9cdaaa957e221350e4f8fc06
BLAKE2b-256 6bc713a017ecfa9857ed4a695f7dd3299f59fa73a6e9e9989d09fcf6872e5042

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a1daf431d90ff8fb465ab542407704f822fe14fc9a116256543b25a23d46a839
MD5 59f0afa02ddd7920b4496fa385d705b0
BLAKE2b-256 d9ce1298b6ac7e72e5dc030ca74b389a757904de36c5f00cea68c54d17e1ef0e

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c07a8036e740f5ef3899f20610104c8b8f1d13566b15b7fa8fd1c83d58ef38d1
MD5 c5895adbece8dcdc8128fd43b1f9d245
BLAKE2b-256 7882dad3b3e6f902fa8255e6efb405f83cb586ed314995995cb20cdd954da66d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37666910631493ac1286810d4a5bd0ebe6f43c101e76a9d72be6d76429b220a2
MD5 15171d18e6db232af6c1cb224a8c4589
BLAKE2b-256 ba4324b169da6752c08a2ba9214587191db047ab9d5a7f66c390369792ece114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd814e53096fdea177c12a2aeb3caf521948e5bf35c847e8728be1ab0c27a6b3
MD5 1a5b41db8b9dce1428a74dad6aabba40
BLAKE2b-256 ad4953c7062202b7d2043ad7b75e64ac0b369555dfa91c01a6e35581cf3ce0f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e0659c8abdcdc13666f07b7610742ce3f622da9afe35a7039452d27439e8ab0
MD5 caada50d56bc808ac44f5d62ef7344a3
BLAKE2b-256 e9ee07ac261bcc55f8eb2d78ae564761146fabca33b1eeabcacf6fecff5bfbb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbd3a18958430d9d8b2fd6f4271ba2b8f6b0d36701a3fadb73d32c6af804feaf
MD5 f3ae659078c4d4d55d530b64412ed7d4
BLAKE2b-256 599d49916882b84a071bbdd8cc0b91fd27531f419b48bcf960eb94f641c66bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e472c9bfc5dcb832407c346ed4440f021c497f0555ac97ad10e01ce94b8f4b3
MD5 e5be94ef2962d1d419605f7e169cce00
BLAKE2b-256 cff5a4acfb94c169771f300471c5df749a811b753cc025b8cecf86521d328111

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ec2d075fb9c7bb8e2959facf4f36ab150b8b67cd08b6e64c411bd9fd1c7d038
MD5 c99cba3f76ffce1bbea03ac7db9f9141
BLAKE2b-256 c238002fedf43eb7641982866036184f3b0524c00211a09c7af4324acf874c5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbb1022c35ad9cad492d7ae9d08e2cd499a5033905f1b80728d444dd1d443ffa
MD5 cfc4cff974b948e88bdf35df95bfd1e2
BLAKE2b-256 7c82dff76c2f3988a5b94505f73568ae36f9b5b1f77aab6a8e4d981a1a7c3246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 571fde3d8c8c5767d5443b4ebecb54a3b79277e855810d9c2f8cd12d4bc5b1c1
MD5 187434f073f3d25f8d02d2a2124197ea
BLAKE2b-256 40fc43e8726782e23b746037188608162c84f8e26d2f6112bf6f4a922ba87a15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15f146cda2cb92dbd86f23fce68e88efc28fc0b125d4d0fbc89f6a6d365dac45
MD5 4a63ac3d83d66763346c240c75d61e6b
BLAKE2b-256 2836409711d19bab7a96ca6f08a234a0ec35acc5345a94e32633551a33c66663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 691a3cf90e0db47c26142bd5945059772a99e9d8795231a8881e2cd437d53b67
MD5 5aa603ff6d7a46fbbd49c2fe8880cf8e
BLAKE2b-256 8678bd27ee87746f1e1a1d36b56a737a0f2f3736d082207488911cad76cefaa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bd52fab0e274bed59941c7a5bbaa83542c9cb7e7c71765ec1908bc4203db66b
MD5 07b35e99278ae4afe1d26fd6a67e50ae
BLAKE2b-256 c65b6f21e8208659fb4759f05600e841f9553edb30c2f55f9b26380e766aec31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7cb51a8104cb8149a4f6886823255a0574708dc88ed09de81bb2028e48865e83
MD5 4e75d619eae1f6c52fbe0dcc5da68bf3
BLAKE2b-256 e9c89583bb68a671b93ecd94049c474f1ab2efcdd9a9925a38c21fca501375fb

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cda0b0bda4c6ebcb15706c8f4daf671ab6f6af53d8321fa390ea19fe3dca721f
MD5 dc8652fe7608a0355ef90155abfce0bf
BLAKE2b-256 bcfaa7cbb6aa78abe5cdab656113a152efbe9fd188311f68ef14f26edabdb87d

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 028430cde90eb80717d2da13a539b53705048c1b56684baf0582f3b63cea83c7
MD5 b40be1e7d783d09de21ae0fc3d458076
BLAKE2b-256 7a69e8a80aaa2881858161fc7c5e164c939d221dfccde7b450c958e2823cd73a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e135da1d45663372f0f3b5b8c9b3a12ad65c416c7fa72d0b28d0a2abe91d2859
MD5 72bc0ff011c7baf866a4ff35bcf25124
BLAKE2b-256 1ecbda015cf6ff2636185531a495a2291192bd89d04cf57723014bdad15ea4b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1306e55bc102453fd1ea2cc4f0e80b722c8ed56290031fe0f95e3d6d106015d
MD5 e640059b694673e0a8fdb437578f95f7
BLAKE2b-256 609fc5cafdab9b24bab275019a1dc0aafc999933586f25cb997fab4a7b40a47c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58473f5e2ded7739185bd0858eb874122b2e560011a0301b06eab2f3523f27e2
MD5 5c8224168b7eb59326eb4af0c523b3ec
BLAKE2b-256 e669762e75526129a4e9e8e3aba39414a9976295769b13e6e6b22966860d3b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e162d23241deda395769780e9343e5dbb677f1558aeed65d9f9e0ec9ed4d51e
MD5 dab14e7dcfe418db4968867613edbc13
BLAKE2b-256 5b6f02afa80bc6f0e145f9ece935de807d7e31c44fe0cd41f51d81de298bed28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3fdcde7bf9d3e83e45e758768a2851e9e0a20d193d402189e0b8c3e1ef54021
MD5 38a275880f5293ad4d8b600d1fb81d3a
BLAKE2b-256 c3308c81624ee47c2e11bf7b7cc22392e9a6c1cda68bec1e413b42eec73d0284

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 024321d512ff3bbc5d044b856ef2c6a6e5338c38088a78ea3f6dc9e3836eaf8d
MD5 d274ebf527cf93dc53ec07d7674c1544
BLAKE2b-256 0acb7ba713f2639657b999a56a51e9cea23f44a9e4ed86704738bcc4ede5995f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11e188840c32b67443a895802d30b23386dbc6c87732f4b46dc31f8224b61a34
MD5 78fa2a413c73fbeb2c5c59d75008cf84
BLAKE2b-256 76e665848381b1e18bfbff3df4745196d10b8ce2221f9b74026b3a903cefd3a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6aad0125bd66e01a6903f00d2cbf7603ec5e04f072d27ef9a18c972f3d38a114
MD5 7e9d7ad0a2cc4fca69c416245439e8da
BLAKE2b-256 274ec92478bbbe4465a073f23a2f18937c5c50c9ffca09cccbc295e5d6843e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63e74b7fc794b01c1cebd58aa802401d097f8e7c07f734fc63be36f05d271888
MD5 5cf290387378e9ca65006fced327d979
BLAKE2b-256 afdf60e1c10ea863c13969a4175d80878d0b40794ecc47c83ea5756b3b7f6782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c85b9f4f466aa491ff9aa964747066395eef3e8321aac4e5fa56339878bee0d
MD5 294294c275800c0e051f54f3bdd6ace8
BLAKE2b-256 9b54d839d9f2ec5c19243b52c49e3c42b386a9433497a1cbeebca5e98c19d083

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 537a6ad8c108f55361066f531562aaadc796ee8db8e5eab7f894dcade74f033d
MD5 315dedeb871dda46cffdb89f166576a2
BLAKE2b-256 fc30de87acdcad240eec09cb5bea59873859df2434c7c479bdeebd2338645b06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 179c4961ad5d5f9592623ee0dff245dababed9b74961a278f5c2e18010b84960
MD5 4ab14ef29bd030b8c1446757bbcf091c
BLAKE2b-256 476ef93cc6c1df38b9ecd6d3fe450fd1103a4e49c02c2cfe2d676e206079a364

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 90930339b9ec8f704ebc1d198461b7c5ed2642097c6ca6e060ca1d3ccb824551
MD5 aafa6a347d7218f9558a60bdaa325c9b
BLAKE2b-256 dd4eac3a56d87b6ae38f545d0051101e0da4634fede37ae4635e01d612c318b0

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 55904912b365f97fd8564a6c3f5108a61d78f85b7dc85200520cb63ae58e6075
MD5 7d785eba456cadf8c40c003fae276ac6
BLAKE2b-256 590877c4e8dcb6523f26c753d6f1fe9a129140dbed503e70e5fdc491d8645445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b19e34e157a3bb098e81e631bc42758acef67ec352ebb313b1a313466d3dc6d9
MD5 87713ca2f9c606393467da412f96ba09
BLAKE2b-256 fbaf0eaba64c044e5917f7ab9eecad305c5d3cf6e41de5b51ebee04f1020ea73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30450217893108a831cbb8eb2d9907681797b16bb68f03c5f579de264322e2d8
MD5 53f7edc6f5d38609d4ede0abddde4e7a
BLAKE2b-256 6fd22efa2995a255a3eca313c88855e75919286b06977c92228bb35c4f33cd25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b942b57a6c760b4b9b0afbc50bc0b4f14574fb91376e32a6c12243cc2bcc1cbf
MD5 da8060224b3f5650bac57273432f7a9c
BLAKE2b-256 b097e175d999b3b728b7780fac9d110e7ed5525f3c354930013a3dccfaaec55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4549aeb51abb6166e6668ba247a26ccf78499c97d078b5a2da593cb50e3b7c25
MD5 9bf9d8e7190009010820311df8a03377
BLAKE2b-256 2b0bb38dc24d7edda5568f707cac15c1710b0dcb95521c8e3d1a1763cbd6299d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58f9eeb8f27f7bcbb133aef014ae6677c24357df9f4eddedc235327fd509a1d2
MD5 e820327ebf377f7f03f602bd53639ec2
BLAKE2b-256 0d38e64ca67a1b2b071f39766556150fb5e9654331f3263e388889c06810ed4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9d42504964036c93ba9a128572eba7d5d1abc749485ca9626f26b9f07ac338f
MD5 368c0182db118a2e957941a6ec66487e
BLAKE2b-256 b37c72e87bb783a53d60bddd8aa50c83c3c485cacccc0e5d5c039f83e2ca62de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0546decb2c7914ac08e7287d26216c8774e058a73ee65bc628df57c113967480
MD5 9879706c1a6ac3c3940d53212b99e1cb
BLAKE2b-256 211ddab512646bb7311667004373891b643d544ca1d312493a00cbbc2eb62ec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac1130449886658af70e94346919ff563c37daeb14eef3933ec6a661f086dcc6
MD5 a9d0d3b07fc2ff1fc75805f738c5ef4f
BLAKE2b-256 93e035263a7ac6fb4483c487f82d51547d954e6fa965e3ee6798d86c776b4831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ddb6075e925b8ac9c3d376c06b18a68bec2b173617f2525b5beddff5a1ffaebb
MD5 ccf95345369b87cc465a0a6fa6f6a1b9
BLAKE2b-256 78a32b65cf6daff75be91288b0d25d3c53d148c3b9c90d0f0248da0c2581131c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d240d7d6423c9e3a9ebe279f17ffd974947912a7a63b984d76b4e46b13c28d5
MD5 e9f67cbe8d102afd63e156da50bf6023
BLAKE2b-256 e9d08551b6dc2272c45341b39b505c3a17e4df663790ca3bc4b26782f2547a87

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 41c29f0f3ef48f9052851331dc17ef1802937aa59e5f056526d6c208898d8c29
MD5 60f424f35904851590982cf4c304dc01
BLAKE2b-256 ff36d03204fd8f96e568a2c950e354c1ef664dfbeabf7ac851b411f0ed29f382

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.5.2-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ee89ebacf04a90566f14398dabd182efb5769840ca1e1ecafa55e22840103553
MD5 2f488a2ad5db1db4928bc42dae27277f
BLAKE2b-256 3b16ed952814ae98e9b4ebfe197ed2d699feca9a82595cbd84c911db2fafb9a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf7586900d97f884a2e2922d6943c67e6d054a1cbce1c93de2207100c6a02f7c
MD5 bb010177d168415960fd3cd6e5c44e7f
BLAKE2b-256 26d763293d25c4805df141b560332ce14d149973876ad47e7a9d01040164cc85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db31e9da67ec0655524b50d56b4f963f46244710375d52f0c1caef57cdd88f25
MD5 d3a1f6e02ba1df0777636030bd5b20a5
BLAKE2b-256 1c1a17d4b3b3fa4decdf4bc65182501460e4022ee22c53b33901347707040050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9bca33ae2590a4eb8685fea52748495096a55f679132a4b47a890c591f36d0f3
MD5 ca016c3bf3b399c762d7dd6d7fc47b4c
BLAKE2b-256 ea35bae318c08b0557b1edc4c787f2517c9d49594731ea527e70684e743f612a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 185e491a16bfc274c27611c6d87daaca6c8398ea4270319ee3087ca32dc1b840
MD5 9725148071ff723aa7386b40462d2069
BLAKE2b-256 ba8ecdf26d7e592bb9b2e767d11ed550e84bc46ce8e13f2516a176c702ae65aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0377a360462069c23b55717eb08c3ab13359fc0d3a349d3e178769a2816909f
MD5 e64dd8d7d36af7f271d82de431eccd1c
BLAKE2b-256 7310eb779ef46dcfb25942c949b416bb3acbb8129ee87dfddd09ebe938338b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f931bdc6d4b576106d75aca90daebe7ff5aedaf290a887cfc93852520455427
MD5 5de6a014e75cbd45d19dd57661be1804
BLAKE2b-256 a6e9fe0026ab272b7b073646d0d0fd7f544bd42a3dbca26840ef484835bd9385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d121b5acbe878e2a3ad9b73bcd18bebb232e87c0306752e2fa5a3d4fa07082c9
MD5 0e26633b1ba12d5ddef07bd3d69c15d8
BLAKE2b-256 024c53d57dab59214f727ba0bfe573a924a1f2455b0e721eab8afe20ad3b243a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78e428d8845f60f6cd1ebeafba356556dfca28f5e340224d9d79cdb552968d2c
MD5 5fcbfff3b3377b2c4c12638393f3ac7a
BLAKE2b-256 2129dde3c4b5c4baeda96e89d4e9b6b2476460e59f08664b5043177bb32a5a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc730eedafb7a11c6a4fb0ddbedfa8840bb8411f571843bdde0a1047ef41837a
MD5 57bf03dca452cf0fd23154ff6a0123a8
BLAKE2b-256 49ad51095112ff882fe504cff3a1a11565a6f426c6250ea2e9b34c592023df64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c4eb149d9b07f7c60175ea1d62a1a0928e29fa94a3aae43c6cd53a6e41ba7f02
MD5 65406af2a4f9147022ed9f7976a17ac6
BLAKE2b-256 8b6ae8aac9f3142f43e9ee09d090d1b058c0e5034b05714e1953fab2fd0ccac5

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