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.

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('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 midnight')      # 2023-04-02 00:00:00+00:00
fd.to_datetime('prev Monday')            # 2023-03-27 12: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

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')

Requirements

  • Python >= 3.8

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
  • 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
  • Datetime formats 2023-04-01 12:00, 2023-04-01 12:00:00

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

Configuration

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

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, very much like timelib does. While other implementations do exist, they did not quite work for me - usually missing support for some key wording, or having timezone handling issues. 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.2.1.tar.gz (24.1 kB view details)

Uploaded Source

Built Distributions

fuzzy_date-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (502.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

fuzzy_date-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (524.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

fuzzy_date-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (601.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (520.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (378.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (349.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (357.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

fuzzy_date-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (503.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

fuzzy_date-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (524.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

fuzzy_date-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (600.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (520.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (379.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (349.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (357.8 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (503.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (524.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (601.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (520.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (379.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (349.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fuzzy_date-0.2.1-cp312-none-win_amd64.whl (188.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

fuzzy_date-0.2.1-cp312-none-win32.whl (179.0 kB view details)

Uploaded CPython 3.12 Windows x86

fuzzy_date-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (500.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

fuzzy_date-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (520.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

fuzzy_date-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (597.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (516.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

fuzzy_date-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

fuzzy_date-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (385.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

fuzzy_date-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (376.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

fuzzy_date-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (356.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

fuzzy_date-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (291.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

fuzzy_date-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (296.3 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

fuzzy_date-0.2.1-cp311-none-win_amd64.whl (189.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

fuzzy_date-0.2.1-cp311-none-win32.whl (179.7 kB view details)

Uploaded CPython 3.11 Windows x86

fuzzy_date-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (500.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

fuzzy_date-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (520.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

fuzzy_date-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (598.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (516.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

fuzzy_date-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fuzzy_date-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

fuzzy_date-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (376.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

fuzzy_date-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (355.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

fuzzy_date-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (292.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fuzzy_date-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (297.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

fuzzy_date-0.2.1-cp310-none-win_amd64.whl (189.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

fuzzy_date-0.2.1-cp310-none-win32.whl (179.5 kB view details)

Uploaded CPython 3.10 Windows x86

fuzzy_date-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (500.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

fuzzy_date-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (521.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

fuzzy_date-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (598.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (516.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

fuzzy_date-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fuzzy_date-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (387.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

fuzzy_date-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (376.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (346.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fuzzy_date-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (355.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

fuzzy_date-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (292.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fuzzy_date-0.2.1-cp39-none-win_amd64.whl (189.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

fuzzy_date-0.2.1-cp39-none-win32.whl (179.6 kB view details)

Uploaded CPython 3.9 Windows x86

fuzzy_date-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (501.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

fuzzy_date-0.2.1-cp39-cp39-musllinux_1_2_i686.whl (521.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

fuzzy_date-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (599.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (517.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

fuzzy_date-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

fuzzy_date-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (387.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

fuzzy_date-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (377.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (345.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fuzzy_date-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (356.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

fuzzy_date-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (292.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fuzzy_date-0.2.1-cp38-none-win_amd64.whl (189.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

fuzzy_date-0.2.1-cp38-none-win32.whl (179.8 kB view details)

Uploaded CPython 3.8 Windows x86

fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (501.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_i686.whl (522.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl (599.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (517.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (387.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (377.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (345.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fuzzy_date-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (356.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for fuzzy_date-0.2.1.tar.gz
Algorithm Hash digest
SHA256 b98bb28130a82b5c119842f81b93cfd7eec6475798aaf4af7ea8e4018382f8be
MD5 2e399068be1b0afedd2e5cb5e540f433
BLAKE2b-256 852b93d2a794ac089f70edd83b51c562899af328b2fc1d5a24d59b12316e5e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5619400c33786e3e80f111d117e84aeed425a4acf35fc1e4cdd9c098adbfc89f
MD5 612186fffc1587b7573d45d1d4d27c99
BLAKE2b-256 814ae3046a5420424378b13502aa601b5c494660fa39db8a280cdd4bb6befbd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a69d9ec7279d93304050a4567d6501641c8632bc8e3d3537e60cdc833a20a882
MD5 229f858370dcac49d65420a5382bfc9c
BLAKE2b-256 00a82783c4775db32117c877a460d016f6b26c3b54e4f7d26a1d0eb95d07952a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 799a3a86c456609b2c4a5a50a0d265109884777b717e7ca5daa5bd6dd8d7cc2f
MD5 f4c7e84dc9ea56431d7ef9e703575d35
BLAKE2b-256 a50603d6b991676c0709ae4130ae93285553c75817b03710fc1b4024abec3ce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b8ec0ef29c57410fd4b9d53f5c9713b395e7ff8c4907dc6f96ad4fdf98eb2646
MD5 122acc7f986f56595d03aa80522ebad0
BLAKE2b-256 82cbc0699123e48aeb917f427044e97ec066c16489149edb89d7c03f6e3c69e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c456f5cefb2160fc4eb7c1f7d28b86c17c844ac82cf841cdca25e7e6cf247273
MD5 dfee2b875ae661455e76d07bc89f4051
BLAKE2b-256 062c08bfde3995030136d6b6d49ac48119d423f95ab3c7442703abb3d5165576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f3017b8f4cd35bdb396ba36ac89a0e47e75c41b18117121828d6e92f75e209a
MD5 1491deb5f71a9922d38f248d6c1ec49a
BLAKE2b-256 aad5174be8f821718f8d7e8f2b2fc84dbc2f6c99f406b605fbe6cb95710b3655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44e94f448a2059454b2f399f78a63f77f13dd98e552a11531650b0a588f71fc6
MD5 1938b59db9d7d2445eea73c441430f68
BLAKE2b-256 77e1014e0e6b560049b41d6c013a6fd9cf0498e2cd1789a62d95338f896f9c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d9887de2305fa0659f87b996df4b7f4c825c0165a56d386346ac03ec732314b1
MD5 7ef1109a61868edd44ad65fe43b23bed
BLAKE2b-256 b0f83a3dfb5835873d7bdd697f36a7b98ccd43522fcae82e6546b2b2908bdd7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e17b0132efa193c61f4e512da44725ac7910603f24b43f9b73575d12225f9c99
MD5 8ddc70427b5a55b60806ec94e9372101
BLAKE2b-256 0371acae9098cfefee93a999588ca0de7c955e1dd794b97b14e743f9382c3aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26fd62fe764e50e3d4e60de36390a3a8d762344d8c4e5ca4a36c8c03ce8b6037
MD5 c8a50504ef565b6e523259d2f2e9cd9d
BLAKE2b-256 ef183d67e44e17ff0eb48830c7043955007ea4f7c357a1b7dbf4bcf332de9670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9b9371f958f1a8c1688cbedb31f426888f175e29875427c4a2e9b17867926f4
MD5 76c9a3d15b7d0bd2f4ff5151dc45a561
BLAKE2b-256 70ad41846353020fcaf0d10e8271827340d1005881d2c65dde39bdc063def274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71837aa34dd83b326c98045aefed18b41512edbe2431de9fe4743ec133909834
MD5 791b6ce2515baee86b40e29185103541
BLAKE2b-256 604298d69d64a368f41a6b67fb9f8af1525a75ef4575e3c26b13ce53a57fafd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee5c8445adfd8aff5e80daf0c9542bc985dfa57f92fbe1f4eea4b4f63b5832fb
MD5 247b0051d2bd0367cc27a26d358bfe42
BLAKE2b-256 569140ef7a12598a0a387422bf719350d408091eacb6858a2580157dcb7ad162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70fb1b96c3d1794ae6d63230679148865c0c0bf05d63a19925e394180ba145d0
MD5 ac5cebfff75635670cc013d6a59294a1
BLAKE2b-256 4fb7ff70704945f22578b73f353cabb30dbf47b625b1aaa20aaca0fa749f9f78

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e0d49a8924ff3f574e9bf80a1a9729a6f55e007a880f78cf8457bbd16b6b5df
MD5 af1ffd6bafe5939fbfc53d62f06b3cb0
BLAKE2b-256 65234e62d8391e637f97b2f1c526f027fcb04dc96370d21b37a87c0d3867ffc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 546386a58a07e0e5f5a97dae037709624c47d16e0f3938c5a82e6db72dbc8699
MD5 32639fddbe779cd502106730afcf02cc
BLAKE2b-256 02dea4111fd57c0b85db51e1b6ad80f617f659f4e81a79dfe79da187e7706562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af2bba420a2845df119a7a7cc52d981986bf03d39c4083050c136398c1922bb4
MD5 dcacb50796651a169ba6c1981a70545e
BLAKE2b-256 469d0f3da0ddcde66ca7302e6092e9697d2dcb3eb8487e6e7f6db62dff737598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cd9a49b371b722d0384604002f7031fd2fb9d26668e94a4f39d331ca2e88fa4
MD5 9c8265320c7ddfc86afa1f8f29404418
BLAKE2b-256 f6936d1ec245f225121f04f1bfa44c8ad951c6bf0202a0717353ae2d0b589704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c9a4f5d708fa01059b4181ac5934364bca94720813cdc244edafe617d456c2e
MD5 c8852f7524f9107b10c2468d26795e62
BLAKE2b-256 18fcb4719650d3475f6390972ede73a283ba3190b7cfe1289ee29c999b0bf3e2

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 06eaedb9933f1ed6fa4557eb67db99a1d188bc38729c8eadc2ab3c764773545b
MD5 8245b4d1f14bd3bd19dd3f16ea6ac1aa
BLAKE2b-256 db0d7f7009cb2de796b3caf423a26b76347277703bfb76037afd1c2b2641e237

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec7139f9d9cec8aeafd8a76534c8834d8a0ca303fa997ead1a03bd8781f8e9af
MD5 e44a3add6f529dec62c2470ef72088cd
BLAKE2b-256 de3ca36985957f90ac8a157bbfe3eaa3744149722745c301df6d0872a02f7926

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a43138110f2165bf3b62eb023b7d1b3a025e924660e187f7e4a37419f5a548f8
MD5 80e41952dd03bd34731d2899799d3975
BLAKE2b-256 0406defbadbb831852cfd8284b3958b2daa730731bb5d4f212578dfbc0a7fc33

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 690bcbc79cf1cb98c4e125c719b037eeab9f4d497f1cf2ba68e03a678208f0bf
MD5 3c9c84664dd244ba6e4aba7073a2813a
BLAKE2b-256 27d4d6ef0136ff3603932930a5d4ebed8f9b7943ac46e3d028200f2b9f710e6f

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84d05ff124b24cae32098902260e768163da3e6645dc3aff7823cc9fcaea0f1f
MD5 2798bdce8d79896e186922df3082b3fd
BLAKE2b-256 bbedf2cb6ce8872966079e756911aad1d666edec9446c5955453d8b9402e034f

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc7c88f53c237740d57564ac3da4780bdcfe4d70c41916df474954d235844904
MD5 5f43750fb61d4a7fd3442189bc5607e4
BLAKE2b-256 8e243586a6cc77423d0ab96fb2ab6914b69575bfb277ca8a702a0d218c9ac615

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f8b6e10b57753cb470fc2ad6f369321cf0d5b0c70fca3e96cad0bc6b4c06de7
MD5 ca31484e14387542ba15a5be7d7ebaec
BLAKE2b-256 149b25d7b1c40a93c2fd2a4b3cbd66ab60ff28e121786b34a8df2002f0042c08

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54a6f124b0638099fc18169ef743065f237fafa43dc12f8738816907c17b56d7
MD5 0a60fb99252ebd1af02a46eb8afba60e
BLAKE2b-256 a7aea8f43a9f32c235e4a647c645c0c7c921f93b25bdf1b58cb2c128d4a4a7b0

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b03ffbeac20732eeb4ebe2fee5dcdcca3d28b70095275f9daa4b2c88e04f98aa
MD5 739e3cf42447bd88ab929cbdae554baf
BLAKE2b-256 1df6cde645d28e0dd3836a431ce7e6aa8740b465f855323c01fe0e83a007f8f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a04ea57f2509c429adbeee94e70d70f1bb311b3b5a70f507e2e373325388e644
MD5 28d0e6d6731ac3d0f760639938bffc8b
BLAKE2b-256 3bd506e00f8cc08fea77ffa37674ac6a26ee9da98a09505ca5c002e26f20ac02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 244f30a9f1fce0c60add5d8524b7599441ed2b48730ff78cb5edc98a9fca7a98
MD5 bacdf216a176dcc3a3b7f265f5795339
BLAKE2b-256 b381743702dabb92f265cf4a12d19045fc8b03cfa4c5e8a1c14f6131896038bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7259ab80148e3d27aaf8060c3b641fa86bde6dcd5484dfedc7a066f48c7f00c0
MD5 a99fdbedda0e39fa92184f2a406ab754
BLAKE2b-256 02e391489e6ae3f5a91d688375d82f6884622332a1e5b44757a4e4060ed85ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d630c7e090ffb7190da62534c509a5604bcb062e73875d9f0f8a5d1afeb5be3f
MD5 c9f1c2a1703ad0cca5802aa72d45cf21
BLAKE2b-256 fb2f92ecd02b068ac30fb11c3b3697d1d4338791a3835f61106400c8580ccbfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47456769ffc61d10dd033c191245afbb73b423b02dc8a776dd0af0db59ad1ab1
MD5 e212098c897ca1d47a1e009d900c5184
BLAKE2b-256 475e0d1bcb39426dfa4792106ca15f894bf36f9678d4c164b1ae19b64eb42f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87e9e376ffd63a7261667e203d9b7d3a0c3e31a7549ad1716900e1e26d3c59ff
MD5 dbef1994e893ebdf94968c72a50661c9
BLAKE2b-256 05b29ac95bc4fc99c35a8aa7ff52f0f62ba82a6528a555b25f23fb865ba2d4f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c76f75817efbebb4bba08aea35c9874ab7f9bbf2e3759a662b1a182ef38b6f1
MD5 479dd233d74d6f66209b7da578663139
BLAKE2b-256 e719f87daeaaf169977b809ad9ffb3c7c5e69bb28b8f132b26be57f8bdde7b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ae1e5292f93079e0aeff95df4eee3154cb0a65794eb3a00122cb3f9fdf64c1e
MD5 b4dd91e5f942bd90dd6e89740bf203fd
BLAKE2b-256 5917e969aa8895e7d54a7a2f6ac47c20eda8bcb8fc860d8bb1e91ba49bf92b6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6cb9e0ff15732ff8a1113ea4acd3d9454cccba54a1cf7de0a60e7da8d7bb90c8
MD5 d7fa9d7e3df03b354a772fa086c2ed2c
BLAKE2b-256 41790185d9e2cf5930b76233fbfde7e7c5dcbbf18c2e3380f39ab635938425f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30f2f282a9236441133a7ecaa27f9fb7a7d5c1dfe5b472dbbf1550db70b6e8c6
MD5 73b247b1479592c57ec254f412c030c2
BLAKE2b-256 f2868c571a0c18709bc2a1dde9bd03e097ee5480ff6508eacf8fb64f68a290dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d0d8bd3ac9311292a4027801271023d37ed42f5151f2e36ec7a074f25d3b2d5
MD5 1d5fd2bfc62348a9c7dafa8fed729f06
BLAKE2b-256 f8fe61aebe87b10a183ae5956988e3267e619d0ef040d440f186a6ebbc936f07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 284b0320b2f16212693caa56cc2b8660d8c51f59123fa3e33a33f9a04f5fed9c
MD5 bc2ad0249ab651a9a4e515d41de12aab
BLAKE2b-256 7452cf11fa0edc493798d3794b894bdf65c96fe65237207ece80dd83757b660c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54bb2a27a7a86dc12c7ed50c58c4377a64a327afc309c10ac904ac11adf1f2eb
MD5 d2555147e5ff5ca616d63d70ece2b5cf
BLAKE2b-256 7b6e55fd8f3f18f39eae6fe7ed3456169e4df12f09af71eaeeb668265ec7242e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd7dd1b69d4e5d386e953711b5de9e0cfcb25fec1678829b10d41b9ba4841885
MD5 b074586991deafc1f03238a6dabcccbe
BLAKE2b-256 025f871d6accc57640b0a5abff6c14c0083837cc1e6d0bce38dba6863c651275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ffad45cc844a4721212a253257591e2d8849fe1108feec15e8190a2b130b0102
MD5 7ba19c7c378fec611775fcbd479b2df8
BLAKE2b-256 68aa4242efa1995bbe8d5cc7bc7b2e4afc83ce6e3c13fe9917aee8c5051dae03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 449b4d76a4f22af9d7e77535f85191fc6352e5023cd85aa896ce78939e588e65
MD5 fd80f6ef25de333996aa80ba9f366dba
BLAKE2b-256 c3b096fc09ffbbc2c67f9a3af1d120b00506d786f778ec3c06827a2c16aba698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5957b7964b161c592a0e3950524b43827a2e93f68ab052cf442a90d82343ffc7
MD5 35864e549e2395d522d683e64fc77756
BLAKE2b-256 a9cc9bcab675641680b42f359a479baeecf37d06211870d0e1dcdab79950e383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2881c02eebdbadc336fb16d6a59f827bab727793b5ebb48f72a77482785a1cf
MD5 d17081597ad0d0aa9ca23cd0a042d401
BLAKE2b-256 56430018d2d136dc35d5759b239942427c7446cb5f4c886dfb1b9500033a159d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7f396338d8771886610c35f6c352e8ac5b079d18aba59f32d2f0a217d348b56
MD5 30db7f689102e12ea0d712ef1b89bcef
BLAKE2b-256 6de5c3cce3e9f6938fd780a192ee3f614f5e4ecd7f5c126dbacdd0428ff67d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6fa3be385ebe3380a797ae1ead867c004cf83faf2cf78d2d2267173ac1f086f
MD5 ad87c43ae816017903cbe1fe8414aaa5
BLAKE2b-256 6da1802d1fbdbc5a6a02baa8d27564cd46bbc3b37dd8cf30040358bc39fbbf80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d52fc4f322520edb758d5787103034c991286ee02933b7a724666037ad1cbee9
MD5 d36f9a29a34f41dbaaca7e4b383deec3
BLAKE2b-256 42a2e5a0765ecc01da1391f9fc8af90857405d269cb535cfb3bcd2644b9179fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab9648c757983fc2cc05b7f1cc4a636555e90de4b88298c77291bf75b2cf97a6
MD5 117ed01c8b3ce391d3e44f6f6edd6b1b
BLAKE2b-256 17c25e79ee4def978185fe9e8e327b4ed23b34cd24210b29651bcbf6eceb1c5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bc59d5c7540ebeab1a0c1dc03a1b25e479a261a25034d062941e6ab336a4349
MD5 cb4c6cf6aa2817046d36ddd8c64aa82c
BLAKE2b-256 6fd32e1a2b29bae592a34f64b1dc27ea571bd3208c091b89b80a68274e32db06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b6900370a154fe8256cb6147c349eff98f91cca392b3f4ad864187cad7d5d7f
MD5 22a5dfd13eee01b28e88cf4c4764622b
BLAKE2b-256 3a9257afc756aa59e104ae77a7d0c01e290fec413b38bb6d2cc79702bc784390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b41b2e5c873c9c97c48386697379d437b8a04f0223a0da4a657a9c5ceb00608
MD5 4214b323e58e2bc308c43c878cc91fff
BLAKE2b-256 8af6fb9792b9cfe7d91110b816853fbc54b8499c80f4c8d77fa4132cfa9f1746

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f76a781e2dab06ba1ec7689ce6fe504cf39bc86f11fc22f171886bea1604cbd
MD5 a74daa24b9c86ebafbffd7566cdca535
BLAKE2b-256 4de1b77b540152f910d3cd6763af244410fe1ca658555e792c6191b6a6add807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e0d47aab3687c7c6fc0173d87c0abe491374f2f798a50006cde734f3dbf8c64
MD5 ae7398b130e33695d147207ac6767ff3
BLAKE2b-256 a3d60ba664885c8238927d9e949abe5649e2138286322a83cb2241cbf0d678a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52f122f2853fbdab470d2dfd70e20d45ce5901697c70a4d13839ecf80d896cff
MD5 d0e6a0d2b409bd41df4a9ee6d967d004
BLAKE2b-256 5fec3d4dbc50d8c22faca168dfa2bca12f998a70bcf2328bfdcd031fa0f7dd2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d988f8e4b629ae1b6a6ce79c87fce5cf7179b142831ca6af5f7dc27c2ba02262
MD5 524573ef02429bedc73d4b2df7264825
BLAKE2b-256 9c29a32906f53168e285044b07051acd88a20f8ad16ec62404fe3e9906718856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0d56df603037258af68d47bd5e76d050f483acab7359790ce7c4eda48713a9d5
MD5 85fa126756813cc1ab6b12862289f71e
BLAKE2b-256 d81e8cd20d08b96bd7fbec3b786779aa7fc60e14593449916d0cbcff9c8ada61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 489526855a5046a40eeb573685754e47304add40853ad4878ce277a44ce63371
MD5 153ec6d0d3c59510f1abeeba76c0f10c
BLAKE2b-256 9b61c01a02b860116fd5d516f3b81bed07886bd8c293ca91389ee63266bb735a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63339283b6200da79ee6e2542b54790f0a38d65f67d1c0ecb34c76e56c159d6b
MD5 799696212cd3d4aeddb9b1436cababff
BLAKE2b-256 c17a704bc73d0f23f9bee109626d5eddf04821a690e18ae357ba0caea92af1a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de421301f5753da82bb5ade8af492a524dfebe05aa03dd18ec6ca5f9f6f8ca00
MD5 cfa4425099a48e4f3d377c150a9e1805
BLAKE2b-256 29cc5c48ecc4842667d73bed92958dfef83f8c71e93b1a7974cf4098229cd440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab0dbf8522d4716744e953defe637f6fc1867585215ed583d19e252c407212f2
MD5 14347963832c87122f6652dad82420f3
BLAKE2b-256 a7884a6c9a93355fcdf939c7aadacb1403fe6a6769459ab4279046ebcf03e0a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54cf83a5ba1bb67258273451350e653e50c20c645ba36aa18190e7803cb7f554
MD5 2a1b2104dd2cfc62c6e9037fb4a7b989
BLAKE2b-256 49d1d32a4311f9b753f1dae5780ed4b69c984a19f0105008ba9c2070421b3a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18189aaf3e647ec5976c3c9ce5e9f265a39873dfd84fb9325cebfc70a1bccafd
MD5 f055551af93bad33d1d0d13c5cad85c7
BLAKE2b-256 27383ec96c894ccd490ebe87437595d24e6433c70d9b748ade3200e9cc3a862f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8bc3e99ca5bf0e20f9d43e2a976568c5d5f9431a097848e8762854f2a630e7d
MD5 df0fee3bc7b43cbe7d1f28ffc809c0ff
BLAKE2b-256 6d305b1e08644295e739b4a899b9f3e0901f7b1608e1936bdfb3435f5bd90c6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d657564a93e5b159b0f6832d96272717e91c3e9995a0ceb2c67d2aecc195052e
MD5 cd0bc75d090981b3ceae44f832eb8ae5
BLAKE2b-256 d9da1bad8e8fe61d9c7d85d5a42ff59eda0ff51fee0810f1bb81146ae8d80740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00c402b20d3a9acda2e27c4aea0d27fd8776a633577ac079f87a4a456f95859c
MD5 2ce139383eccada0cd335b1cf4cf871b
BLAKE2b-256 ddba0c17fb5ca2cbe9e4e57d6e5547b9778ff10c8c6fa7980dcbda0a101678f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 817472210ac99bab56045856acdaa54ce3d6e020de97b1dea4c982157ce7f339
MD5 cf0bade18b0943f90ae026f0bf6a2025
BLAKE2b-256 12b1a2e00a9a837910df1fc22481c8d5d8646c4c385a8e525ead2e20fdca0ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21f4081cf30559373eaf92f3982489f6697ad61011520d20a85a7cdf6432159d
MD5 9fc9df04802df004519f0dbd49702e5c
BLAKE2b-256 b0d380272be8f8e4e3fe689815a826897ece03160b8e8c76f51aa48af50c4ab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 8d67f03c54907ef58f7dc4ead4ce599d2c1b17fb6a528174c187a37f0aac9fe1
MD5 57549666a29b5b9f49aec6fe1f7b9db4
BLAKE2b-256 d8103afbf65510aafaac7197f566f092336292c25f271429ae8f2c1653996b78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fuzzy_date-0.2.1-cp39-none-win32.whl
  • Upload date:
  • Size: 179.6 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.2.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 56040233d95fa08306640b5b53b046afb3d4f75578d3ad7ee2311d7a876e1731
MD5 8db2033ca1b5aac24734d03a360a171b
BLAKE2b-256 f09b654965e4e703979703310990d401d16a3dc3ac5cc1d77e9820cbfa20c3d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e5fcdf91c1943ed87c515f0a7aafd95caff4be4b62337913140bc031e025965
MD5 0f92e39710652cfa3c3b7a4b3bb8c0f1
BLAKE2b-256 dce00c2d79abcbca1e0039d64a05f92aed2f16a791bfde7b1a979ecb9373479a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 796b957bd68b379033089a1644bc545a4cd165726e3f6dc171f5c51157fedaf0
MD5 4d78befdb8365966a4b4c583a260b85d
BLAKE2b-256 d98d5d17db90098f431716a48ca7450ab0a7a20621ddab7afa57b572a02c3a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f494cde9e3bd474282c610258e3a82cb542d3a0870bec114288a53e52629d981
MD5 fbee2b0d89bdfbfff1c9c81be14b5ed6
BLAKE2b-256 28a868fa873f8092129b112f98a7a5edfbc066602af492ff2a9fc6b6ec050f92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b145f07856a0944e51d7a8a8b88af0da29f48a67b5ec8203444b5d5680c203b
MD5 4bd6cc702258624db57a86f6d9f208a1
BLAKE2b-256 48f9e9061b9ce02b349e50ba6a4212a618893b107d3b74e2782fca99fe4b4663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ea1a327df9bc6555edac1c4e2b9c2fbe848744fbd2f28e77aafe78ef8e2b9ce
MD5 6264551ff4ea0ea7e65a7027b8d02356
BLAKE2b-256 5a875ff9482cf84c5060e1f5080af3117ce02aca1eec2c8f9d36c8d68ef2679a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2610bfc825b355855449c117580badcbefe233b726e703e18ff2d24976c267be
MD5 e8ead9d9195f22ab1624fab72cabb252
BLAKE2b-256 31941fad1c7571ea1f0c133c5ebabe7baf5b284bc2a5488172aa5d8caf61390c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 970adb8fdd50513cac565452c97dafc649ac0005a44d9af203dd7031b4c8cb05
MD5 02dada9c860bd3a18752effcada29b3e
BLAKE2b-256 faeb0413dfd3f601bb5af37a6e3ea037e68eb542ab1c339baa88d80acdacf55b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05c2221b5a5df1694d843819a8c8d6c40594399bff754a5696cc244e49bec60c
MD5 a5d491bb551d43eb8a12b5382f8c2d5e
BLAKE2b-256 148f9df843ba5dce08b211d8bab6d0674e5be9d88be70a8fcfa61904d72469c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 897cfe67ffce59c8a14e047a6b743e794808e36562a4b8bbc567643ea42ba803
MD5 f582cbab27622a5dad8ddbd460623fa0
BLAKE2b-256 0929057a03c4dba0912f1ed3e1d85fc585ded72fafe02aead382b663ac4fb9f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36f13d8c3ace184368873add4bb2d8575cbb4c1437ae5fc94d71fb67cdc84ce0
MD5 9fba35a8e93463a60581b3442230de83
BLAKE2b-256 c35f34c4eee2a15a21fa3461426ae2e2b984a3943c14a28700551adfcae25949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50172313f7d878761413dbdc0436489b80fc7c1c0b20864771f25d702771cf49
MD5 c3391706e09c71bd9795b527079fb96f
BLAKE2b-256 9dfb7998e45170b93baa72daba5260a5908a576a2f8b6da8f35416dd2aa345de

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 aa741d3b1952511807633e2915178c80ef3310b631c20d29532091e551c6618b
MD5 732fb6c313792981986804d5c283ce10
BLAKE2b-256 f0fe9824277457902ba41080130fa523a889db358f4e2525ca844a5fe1ff6bc7

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-none-win32.whl.

File metadata

  • Download URL: fuzzy_date-0.2.1-cp38-none-win32.whl
  • Upload date:
  • Size: 179.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for fuzzy_date-0.2.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 eecf94c8b21bddf26441e954045487e0e31e7aac444b0f6fc864666fb0989857
MD5 7bf204b0d04c1a55c6f46ffaca90ba8f
BLAKE2b-256 915487ff3770b159c03748d4aad7b37b2882d42f96dd4e77448f02acec2c5ef8

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 134bd6f3b14d84187badd495a02c645098b651399c5809968d4608aedbb88e91
MD5 82b4979d50d37ea098df8c97f3f43ebb
BLAKE2b-256 442fb65f9c1e33a341aefa5d29ed4674b583a0dcc5ad14045be70ff214c1755c

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 45e5778202822c6d59cad77fab988f6260dbff6794bb5c841c329503b6f40eba
MD5 af4e869b3bb2dd0a91799af8156924ed
BLAKE2b-256 586396253d24e87af6c8b9a1c7a0d323acb60dff7a7e746a1922a0aab892fba6

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3ddcdc8f5211a426adab29503962583e7e743eb5cbaffba6bd1192be6999d7f
MD5 ff2dcf3822fc991cc9d3bf2818b76ba9
BLAKE2b-256 7f93eb75f761ec4685e1e2683931dbaed5682c5808410dc94968668544fc5375

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8ffb5421c9a3ca98daa5260ccef6a7c25e5925cab2cb89c4cbb37672cd0f11a
MD5 90efa30bb78b49ca941234da57a4f86f
BLAKE2b-256 8c45868ff9f8f1197e5fcc6e0d6e55a79b5559845e993342a993fc992e99acda

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18da7c1bb5cde7b4d9dc35ffb922fd5f3668934b31c4ad517f7b2f76ddd2ceeb
MD5 0c28f7757fad1e96b27b64b268783f49
BLAKE2b-256 3a0023191079ed3a4d3b5b5c46be5ff76c5fcedc89dd3f2219cbb06ae5792cc5

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ccda37f451a819bba6b178bebcee05c8236ad6bbb6b5da6241f066804e2a89ea
MD5 4dafa7cd90cc2c703efc90776459c4dc
BLAKE2b-256 615cac05b94b802acf84360b6046808c3a17b282efbfaca08d9a9048ee3158d8

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c516f45f811daefe680750446a3a0120dbc2be119956741978541d68ed34490
MD5 db8b218342dbfdf3919c2d9d11878eb9
BLAKE2b-256 3c377f494b6b9d810ef2bf44019712ca193bc68edb15d8f75a0341753bff656f

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e01080d197a1118844408302973cc38fea5776546c108980b5508ac342e43883
MD5 e658a0a7e6d47d0127dd1b3ebc275554
BLAKE2b-256 42503975f24a16cb4e96ec28627cf1632289671d084f942804670ed49e3eda5b

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e05d29825ab6cd3d27e7ca966c13f2ded3a584ce3dd92c38b04967d108686c9c
MD5 5127c5ef69ac9a0099a4d0e34ce35a89
BLAKE2b-256 bd96e546027300e883393d5e7b3e5b2a6171deea35d76abf43bfb865f03c3782

See more details on using hashes here.

File details

Details for the file fuzzy_date-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fuzzy_date-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de9a8ab8cefa9d3e92176cf3347ef31f76ef7a3c62389e75f522fb909c36ca85
MD5 8be2a92594a5287e7624a2f4b49ad294
BLAKE2b-256 4a13091e15b89c47d206b5cb463062a56e7150f6bf21fbbed9b1717d742fd27c

See more details on using hashes here.

Supported by

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