Skip to main content

Convert various time strings into datetime objects

Project description

fuzzy-date

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

Date conversion

import fuzzydate as fd

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

fd.to_datetime('1 hour ago')             # 2023-04-01 11:00:00+00:00
fd.to_datetime('last week')              # 2023-03-20 12:00:00+00:00
fd.to_datetime('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

Time duration

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

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

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

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

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
    
fuzzydate.to_seconds(
    source: str) -> float

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, to convert user time tracking entries into exact durations etc. All very much akin to what timelib does. Other implementations do exist, but they did not quite work for me - usually missing support for some key wording I needed, or having issues with timezone handling.

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.3.0.tar.gz (25.4 kB view details)

Uploaded Source

Built Distributions

fuzzy_date-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (507.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

fuzzy_date-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (529.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

fuzzy_date-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (606.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (525.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (340.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (394.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (383.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (350.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (364.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

fuzzy_date-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (508.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

fuzzy_date-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (529.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

fuzzy_date-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (606.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (525.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (341.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (394.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (384.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (365.0 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

fuzzy_date-0.3.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (508.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

fuzzy_date-0.3.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (530.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

fuzzy_date-0.3.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (606.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.3.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (526.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

fuzzy_date-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (394.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

fuzzy_date-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (384.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

fuzzy_date-0.3.0-cp312-none-win_amd64.whl (191.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

fuzzy_date-0.3.0-cp312-none-win32.whl (182.9 kB view details)

Uploaded CPython 3.12 Windows x86

fuzzy_date-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (505.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

fuzzy_date-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (526.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

fuzzy_date-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (605.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (521.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

fuzzy_date-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (338.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

fuzzy_date-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

fuzzy_date-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (381.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (352.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (348.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

fuzzy_date-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (362.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

fuzzy_date-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (296.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

fuzzy_date-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (300.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

fuzzy_date-0.3.0-cp311-none-win_amd64.whl (193.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

fuzzy_date-0.3.0-cp311-none-win32.whl (183.2 kB view details)

Uploaded CPython 3.11 Windows x86

fuzzy_date-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (505.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

fuzzy_date-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (525.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

fuzzy_date-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (602.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (522.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

fuzzy_date-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (338.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fuzzy_date-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (392.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

fuzzy_date-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (381.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (352.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

fuzzy_date-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (360.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

fuzzy_date-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (297.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fuzzy_date-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (301.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

fuzzy_date-0.3.0-cp310-none-win_amd64.whl (192.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

fuzzy_date-0.3.0-cp310-none-win32.whl (183.2 kB view details)

Uploaded CPython 3.10 Windows x86

fuzzy_date-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (504.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

fuzzy_date-0.3.0-cp310-cp310-musllinux_1_2_i686.whl (527.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

fuzzy_date-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (604.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (522.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

fuzzy_date-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (338.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fuzzy_date-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (392.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

fuzzy_date-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (381.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (352.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fuzzy_date-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (362.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

fuzzy_date-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (297.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fuzzy_date-0.3.0-cp39-none-win_amd64.whl (193.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

fuzzy_date-0.3.0-cp39-none-win32.whl (182.8 kB view details)

Uploaded CPython 3.9 Windows x86

fuzzy_date-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (505.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

fuzzy_date-0.3.0-cp39-cp39-musllinux_1_2_i686.whl (527.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

fuzzy_date-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl (604.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (523.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

fuzzy_date-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (339.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

fuzzy_date-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (393.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

fuzzy_date-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (382.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (352.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (351.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fuzzy_date-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (363.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

fuzzy_date-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (297.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fuzzy_date-0.3.0-cp38-none-win_amd64.whl (192.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

fuzzy_date-0.3.0-cp38-none-win32.whl (183.1 kB view details)

Uploaded CPython 3.8 Windows x86

fuzzy_date-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (505.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

fuzzy_date-0.3.0-cp38-cp38-musllinux_1_2_i686.whl (527.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

fuzzy_date-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl (605.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

fuzzy_date-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl (523.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

fuzzy_date-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (339.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fuzzy_date-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (393.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

fuzzy_date-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (382.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

fuzzy_date-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (353.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

fuzzy_date-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (350.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fuzzy_date-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (363.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for fuzzy_date-0.3.0.tar.gz
Algorithm Hash digest
SHA256 3ec06ca5ada9eb36ab1dabe803e40083ecb60ed49f33af5917ad75ca9341a9ae
MD5 d8cb51c289f69fa494fc2ff87afb996b
BLAKE2b-256 0f02576ba1987a2ff0f5c0f319891f67623b82ae369bc7de86b5713658e1480f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 972a6c82f3a2bc863c5f3c9b37e6a34fd9eae8cde285c5443ea7c03e0746259f
MD5 4f6de5cd902e1aa9754af207b14d5010
BLAKE2b-256 e6f239b3e4f0810accdb9d0de0a089cbf17831bb2db6aa2026576d3e02ea633d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6cc181feccaa5c38c9c7419f3dc014da84eb9ccd8895726d3e41b4bc022eba9
MD5 48070c4d0b2c113c9d2b002cf3f8931e
BLAKE2b-256 0473e54d4c2224ce14a5ef40531de6d3e7a8eec7f6f6ac51359819d40895f6ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f5af87311834f9d286c8d673661f4b111243c00f595448d5e39040490fb4bb2a
MD5 2e6d833fedaa30d4312f0dc8422c97a4
BLAKE2b-256 06046281c85f4cdc1bf3f3b58316e818f60fab6bb42fc56f0f2e6e065dca2d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 729476c83caf8b3767a9fbef1921f2846d205e4f942b4ef43260291e53bd9952
MD5 c809a66699fe65add95e4cdc9701bc04
BLAKE2b-256 3e13883fb78f665dae9094468b5d322b52954ad91b8c092922e73e9b0d6ad500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5615966cc0222e1504c996fd1b1c97e19ab98477e80cb55ca026477e35593495
MD5 5c7591b2f45b288a8348806f36f3f366
BLAKE2b-256 b100054ef992cb12d836a48d4e7562268f95b213e530485606143269cb1cb53b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e3a8ed1d70d983b98005d66a805bbdf7f0a3b6199f1263997e3afb5961ef0b1
MD5 ad00354c01d3daa71a5ebabc41cc719b
BLAKE2b-256 685958dbe42e6be58625c6532b7345ecbc4abae72e24ed9d06067ddbacfd02f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bfe6a82a5199db3a22d7e67ea5945a77b4c9f8808e84b43a242b8e710b36a64
MD5 c3080a8440b8542f104b3598bae65945
BLAKE2b-256 81f41e22b596af3f6ab358498c987c3ae23abb2e5801f61d9a8bb65207d961d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f53ea346e312a284184385bcce68b981b67fee4ae957962c2309e8ad1b53698c
MD5 e2f87174730b50fea1106c86ae59ebd3
BLAKE2b-256 11e1fa35ac1a43a9c5a112d9d555ad22bc860a3409f4901403c5b10469cbc899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a635e82c85c12dfb36a1adf789fcb59f8ecb5d82e26ac27ac74a76cd801eb43
MD5 abf46ac34a70179caa9ac5f19ed47b07
BLAKE2b-256 4ccdcc703a810e594ef23cedd76398e5475abbe03185df321301de7021fff963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4def2cabf95cca4ed3f36346472418164fe49547290f6057eccd7b4364834516
MD5 5a734226fa21538e5b43a2daf09b19a1
BLAKE2b-256 63a65356822169e47a8942ea88abd76523a1b221f0397447e6bd45611f04ce31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60009d2c3f5c33d60b00faea4d30e8251dd65ab6099de75c5f9b979939bf15f8
MD5 068a9b3ddb3f7afa28305108053d609d
BLAKE2b-256 a403628aea88bad2d25d6abee65521ab2373ee4b2bcddef15399ceb08e873b1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76be2a2a2b8ac4952d38067248ef93fa3c11d13e54e30d516f9a6599e25e0eed
MD5 6bf8dba2b27ed2a339643d66eef6f1fc
BLAKE2b-256 3dae1e237edd95dd3b07a852a8feea449b2f83a8d017e85a0702f3f5c4d62c8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2401fb41ae1ceb0dca1f718e0c129bc3a40e08b1abb049350cd4702794cf746b
MD5 b1970e02794455f2e13ab540fcf7d771
BLAKE2b-256 4459e0a56254ae8cbca92b28181643120f919dfc23c9376d82e23224eed32f27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a0e72585ddb55071375f0600bdf98c0b2346252a81de7a979db1f8fcfd3c04b
MD5 af28e5bc1483007bf2785208fbc97bd3
BLAKE2b-256 80514729bc21c7b8cddac66fac9070346ec74e759e4831e5d87312404cf22399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a453b27c942a7ad7e6f56efaa4ac24d98d52789288e6b26cd0d938ce1ef3c751
MD5 49e1d3b97d486bc9af099e4425ee22b1
BLAKE2b-256 e26b206eac2e32babe9a9a0e499948480504b94047f07ba8051a1bf97c3b2b65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 78470df638cde8afd0cea3f4b8b8f8acbacde6297b8dc560ac55c2b1fefdbf5f
MD5 719d602af6cefe5a17a1eb90b1289d47
BLAKE2b-256 dffa9c2ae18959bce29874c0e7586ae3fcf23c22f4d60d4c4c3885254d5bc9c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 624154b0036b0cb7b89e088a32b2cf3eb773321ebb81c8a6fd357ff967cc1490
MD5 656f94529b6c42ce6e29ceede30be4bc
BLAKE2b-256 e0dbf7813f2fd1a72fcba04a50332ec84d023309ba38e85b5cfb76b0cf6d6a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b081f920beef7ffc848b5222c8cfdb1d91d287884570327d1150e5dc1c8c47f1
MD5 bed05a8e5901fe9cc830770ceba0ed23
BLAKE2b-256 9a87f6b0f27f856e131cdc1a9e2100fdd318d7a64ffceea6202bfed7c34a6312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f2501c1974d2e150c803bfca1c47e06fb6daa0136c442da78ef0ccdfe91de5d
MD5 4f6b436487e761126ceb603f571e765f
BLAKE2b-256 08493d541d279139a8d746eb6322f0236aac0d0337a453d32657b71eb1b9f427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 91815afc5120266bd274db3ff183ebb5ff43c64e1d055990e7fc632798264593
MD5 5b9419de4be624179cdf717b619c6282
BLAKE2b-256 47b96522240ab5defac803f70c7ad527f8f4daf9efc21384dc80215082a1357c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56ed8cb3b935b5a9978eb4c57770b371df2ad2a13f894180a7e7b7e3e64dcfe8
MD5 934b38ecad37b55a056c9a0dd9a3e3b2
BLAKE2b-256 e858535b4ef52f08678a90056c12758fce5928f47c3657cd88bff685bd2689ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc337a58a8b02c1bb86ef24656a0eb0805d818d6a1b756ed4175630552acd3c2
MD5 5664164f79ea3ca2bbb25374630288ff
BLAKE2b-256 0ede55b47e35d3eb9aaec52889362f6bdfa2b616bb72b1f8c46a308e3f8eb5c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4c664d1a730d6ad7f49341561eedaa48f2ecabe29778fe3cbd72646a1dbe96b3
MD5 84a2017691098aae575579c1d58dec4c
BLAKE2b-256 adfa4fb4d322671b6322e35cb6aee38e86b666c37724727d13022462726e4892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f640d614dfa6b6afaacd3c742bf1990521b229c507da632c84a2144e36e4e81
MD5 3c4c6ea495ea65a8dc39ca70870e90fe
BLAKE2b-256 0b741846f1c4e5dd6969c718e78cf111eab4afcc068fe4c986e6c4c59b5ae0ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a433e6887f3db0f382e25948782136041c1c5f543c4c58ac76bbf44df8c671d8
MD5 9faa1301f2f8558cd5f2b59cb4374fe5
BLAKE2b-256 547b22d4c7ae158805e554ba2d08d30efd3a3dad07d2465afd674501bb6b4393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2fc9489ccb8866c819105c4a46276293cc997b1160a8828ce51e4e778518d8a1
MD5 9b486cafd502d048ac441413cd6f2e10
BLAKE2b-256 08aaf24ee6168acac449f5b38eb40c4ec10da8bd75f551342626d98df3e6457b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7c808f51eac6e46b8120bf91351b4244548b1f5f509f749224da05335635d43
MD5 f0afed4783ffd119d5b3eb24ff22d300
BLAKE2b-256 abb44a2cc4da1d4a6d948460673b8194c3e7c6aff5e228db9f4a63fa319e7102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1877cc1b58346bb0d683391c8eaa0dba43c1fae0ec9ea6bb9fcc9c877d2e3d1c
MD5 477e1517cfd3f672f7a515cfb093efcf
BLAKE2b-256 fe9a536e10ebb59a202b77a3d7ca825e5d1b1091db4373ce10600334b0b90f01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 3d67e1345623a00f5a5b6575cfd8dd0b4f80c61a20d25a9976c0477644a4f721
MD5 a7f85c6e4b636256e71a9f3bf6b08e7f
BLAKE2b-256 7e2a2aa09fe698cf5b0bb0d09639e2a92070cd828852f685b1d98f2bd2a704d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 df89982710ef674a6f24fb4197e01994393b2e8f97cfe3dc9374b24e0b8bf410
MD5 192cd1bbc5ab5458e7d6b6caf55710aa
BLAKE2b-256 3bd8fece7d46c6afcb6c1a2b517855bbf4dd2a6dd090ef3850ee749d0c2d2738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52e2d79a95f20325f5d366d5266154b2f662fdc75dc9c0330ee1c96ac963b36d
MD5 3b871a9d00bb9b813ed45ba1fa23fe34
BLAKE2b-256 740fb96df7dbd8c138f3d652eadc6e194137f614659640609dc9d4a898a93709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d73b4803c2c95b47d26191d8a8a5c6f369c103e8e10a0351158162764fc6d9df
MD5 b9407d517c0cb2a4ac7644019fc7eeff
BLAKE2b-256 c9084d931d7c97f7d0ffa2f49904e60d15fccb5d3b917df7eb7302e96c7258db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8832428d2b9a198f3fd7ec6eaadc2812918beea3f607b1cabb8e2838ecf80ae9
MD5 596df86de1441fdef4f767c36e3085ab
BLAKE2b-256 7cd30ba6d51967431adbe502c737ebb944911e02b5feaa9f6eea16a0b0459ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb907b62a78f6f5d04847c5dcf9553d587ca1339eebb6717468b91dd620d6129
MD5 c678408f9986b4755f08852148ccf618
BLAKE2b-256 5c87d7575d545eeb55f6449d7b5759ed620303c977bec7c146f9b1d343c6b2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7178aa0168b02fdcdd581cfc6b6cb24a2e3010bcb3ca048f8aeec58867702b88
MD5 d7c86951066888005ffd4d808310061c
BLAKE2b-256 89562e0c1afabe10503ce701f69690669849771cad4f5fc0e3a98cb305b67cf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d438c085d90ddb8811df3556bf9645b1543f2585a433093140f50d2355d9418d
MD5 d4f673419d508638d91f4116b1398ae0
BLAKE2b-256 06673161f7ce5a2385a2223214754a8ddc00e4263d96b645538ee32e4ab001b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d550ba164774ec1f95fc4e43e9689c88347329cdad3178b6778d292d9e229171
MD5 001424750c4131142b2c40226a928d14
BLAKE2b-256 1deedd979d14084192f6c9534a795700783178fc9abb4b0d7281d2ea30f2d793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ecfdfbd25f23e550141f63d8af4d6d124dbd5e56135cdc7ad4c693e463bd569
MD5 90fda809fe7d54767e3a4bc63bfeb047
BLAKE2b-256 b1b4366fcb88efa6291982f193682661c88517a208316f396cb7c3228b7f0e8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd5b8d2f0a38f41af9f73f7ba683c663f66840b72da210ddf989f900b36c6f5f
MD5 d2ea121b71362da84ef6373386f8e578
BLAKE2b-256 6301e7d033e105aa20d81e257fdf0727b1b4e2d4b352362b6c9d6bb067c4a143

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 84b687bf969097b6eb08fd420ccec6c7aca955ece5f688d042bbd80161380cf3
MD5 9957dfd229633aa84195724aa4042c6c
BLAKE2b-256 339023efd97255ea6f4b261dc4399c9e4cf38391ff5b35fe825b5937ada7f74f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa6c558e8c9b60bd99139809ac6002086a34fa21e96594a8de0d1cecf6344568
MD5 04bbd0c8aa8cee9cbd753ad89bcb1555
BLAKE2b-256 6fac2641c87523d5afc48e717c02361471598e870ef90bc014556625c0e449c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2718bed125e16e08b0b649c07ec9708a447a348dea3d2f540975e8cbb19792ba
MD5 f2314730fa9602d48466c328b7d79b65
BLAKE2b-256 4875dd34356ae61190518391f8bb1c8bd449dfeb6d853714cae1ca7befe73571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5c40544ed883d5899aaf5fdf3600552485555c10e85c90e102e5388f31920ea2
MD5 1f5eb0b3e22ec1a62f7866a236144785
BLAKE2b-256 fd88b9bd3ec10e29df366d1ad11e1d461e464cc7d2f81669d738270b3a54c271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 aa432c91634febe083906a8c2bffd53cb33a0bcb20e263e2be17f36be2bb9da5
MD5 87011c06d378d6c7415aa2d824d2d07b
BLAKE2b-256 0b919cb7dcf180dfe569d4fc22562c5b4f7f446ee1fd551529214653ac8b0c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8f5ea4d2cf1fa89f44bed3053d356f41ebbfc13c610e4ed590d6e80087aab09
MD5 ff2292d0b0fcdb028c9bb6e1d216b406
BLAKE2b-256 efdb8744ce37cf0510eb5726eb43b14ef7bed8cdacc14b5f71392fc8eb225b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 edb188f97f71daee982e59859c963e743bb5270e2b48422232aa0e25946e1b33
MD5 5fac26284853a0e9d209dd85bfc971f8
BLAKE2b-256 e3dd71b8eb2795cff5f5f3814b5f4ab7a5b0603828a58605a17572a46fa8a4b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6ab6dbc6a9a20384ba708eb691ce20248196f0c23ddf59ebca85c649fe404bc
MD5 b969b246bc83a973c6a7792024df1c60
BLAKE2b-256 005ca6cfbd52b52ca09e1cb0d60f9815733c692b76f2721eb66f66be765c167d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26e918dc26dc6a4169ae8c8cc44f568a97466d6b18bbd0022b1f2d005bab072c
MD5 0877ca9e3b2500dc6f407f2dcd140d0e
BLAKE2b-256 0b1ae0aae0fd46225748eef55270502c7614dcda659d45a30f479f50c811dcdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bab5cfa18c28545149379d6f348277cff3b26851c79f3176c6c1ece30203db0b
MD5 62b28c0c7f95f424b3a457b70c5f372c
BLAKE2b-256 24378f3be44b3f0ce0d43bb68d3c15de4e795aed8002654ee9531874a2f64963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 460788f4489be3e5e8e9dfcf310c0ba4eacb5daaf67d1a4658a6b94aa218b5ac
MD5 d0c5b40dc64c4f502376ac0db4211115
BLAKE2b-256 2643e796626673dbc0b6d7f6c028243cf8d613ddd544092b3c6906bca272745a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5dd8947e86d443880155a48305ab8447efe4f407078921e6986316a152efad4f
MD5 44b8d1aeb462d4ad39a01d4bc31f9b69
BLAKE2b-256 a4fabe06a2598f4fe245ed52b71084af1a9226f7f2ecffc999eefda3c417837c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a50ad587a84a5ab9eb23763a75b6854cd70681ab07dc8bc429b1699c4dfd861
MD5 34b9e7fc057e260ebdf330dbf50b0e82
BLAKE2b-256 e255694d31074293a73f99aedd352f0ed1e95f4aebe779fd652944d6b678f78b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77e663cdf2abdac080fe26e25d9f6e59beba20f5ee9d73c9c3267f357f94dd1e
MD5 f5b4040ab60268a79bc55eadc29e0ec7
BLAKE2b-256 5214956fc0901514e0915e7c76ce9f6c6cda66a1cbb77cc13fde83668537edb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ee2b9beccc16e1e96793c627bf2539165f4ddf64494175470251c6623e662fc5
MD5 75197f4cd61d453e786c5c008bfd98cb
BLAKE2b-256 b42d237805f1d9ef63f4ac03e62ef70aa987f3b76572b6dd1875b939a932cabc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9664db0ced63c43932b746b6a716122d95633aa104439b2b4aa745c7ceafc4c2
MD5 2e423fddcf55c0938cf97ef64fbcc238
BLAKE2b-256 edebda1ace46a25cbd470b606627e94cc985eddc08147469513a66cd5ce4d1f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79a2d68a9252112fb483447d807037e8d93436cd2379cb373b5551790f2f550a
MD5 a05342bc037bb0339f63daf1083d4f0a
BLAKE2b-256 e8a85c7bb9faeb14e80b598ff1210d779ff7be989fcba06f2ab7765e0c15be8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e8c6fdaac0d3dfae1937b2cbaf8ea1ac3039cdd0e8f9ae77facfa58e6bae65ca
MD5 e7e5506de8af5e5f4bfaea4ba30a5d77
BLAKE2b-256 4a2bc43f687192485e9fc49ef92907bb0b394e1e53d8896ff2a8678cb3faede6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 1d691802d7c2fc0d0e738a87609dbe2a2ff12d6d5746d21b8f00c136e8c322fd
MD5 d603c1cc30054ed596833464d49255f3
BLAKE2b-256 ca46afd797cf1826bef56c994d83335f602d90d60d88b1e75944005b65771145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b4725008803fca853b2d6ffe2fcb9f550aafd825bc42bfc5f51d374c77ecf9c
MD5 edbe5ea5d5a09285888d2adcbaf4ab29
BLAKE2b-256 a03e013da7b30fab9417dcd0706ba39e9296734a0130f88ea66d539916ba7ba7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62d17556cd1c99902c00a17c761f88635faea44a3601101612160b2327aa7f5b
MD5 140e0a537c70cfd7266ade78ada98886
BLAKE2b-256 072610e102e2fb97f26e54f0ed5a0f8dc2f24cee7dadac5b35834bc9beb521a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6678b17f8722a7d56d57bcbe5cb009ea282dc52c4dbd5d0a1816b1b87da0a261
MD5 fe1a5d87a9e29fb202c26d50a93d4404
BLAKE2b-256 1e17e3ec1b1f0b6d7290f5e72a909d32b690f74c96395cfc4030d50434a49ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28bf2d42cd0b096643040cc1180d818bd99eac288f7a276e83228c76292eda70
MD5 c4ba03b0c85779d5c1ec4d840bf88006
BLAKE2b-256 0e669d9137bc2438344130b86bb50a12cc2704ffdf73bbad4de5f8844302df0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd841719e3c4cd1c60da62a655f4bbe1bc1b17c47dd03a38d5be5b7125e0b011
MD5 59771870a7ccf577edcc57d29f745df5
BLAKE2b-256 c6316d1e346f63586fc6d11baec86ffb13f622da041dc59dd760920fcbf2ba91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59f39da9977c41b4ff5a0002bd831f53e4036ee9f1de7be3bef39e10e4e97bc1
MD5 20e44832fda5edfe933bf79263b3b1d4
BLAKE2b-256 c900d0e8ddedbb0e15ffa0d59fdb582ca74182a770040cde485cf94d3bcd04c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23f1ed6e480c9dc1a144c57995987e410ccbacafd1670198778662a0b2566854
MD5 f52e8236bbd440b9b4b89159bcbdc15b
BLAKE2b-256 3f5f6b9d8a1f920673d727f356f30350999805ef395615685fe79348afa3c558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b759958bb65bf9c036fd662b3db95a6f02a17289a1a84ac39000ec586654e82e
MD5 59ee0a46bc279420c766113811087b49
BLAKE2b-256 72d6484ea433393c3d16a9a73ce18482b10b6e45a78296f38727e15d396319ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ddb95099048c8bdba0def5f531aca7dc44a86311991c5f2013fba0bf63e4654
MD5 e70a1a114e361c61db5b54559e85f3f0
BLAKE2b-256 b83d302bc616d21bb2758bf5768f3404fca2d807afce2f26f91bbcd3047d19e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 504625868ddef4d3a7f31b42b9d45383c47206adf669d01a25041bb96d21a9b3
MD5 02c47aa324555318c23d1e05dca0e743
BLAKE2b-256 d2e335d437259ddd3f71f7b5ed81050e3e7da7e18b055a48d1b7fd7ac0a38886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d13c6d7504ec58782ff295ea8a465b715214d98515e95f8454b88ff6d1dca15
MD5 6935e5a0eea7d53e992b83570b44e8f5
BLAKE2b-256 438579e26a92f2beff9c3786ebb0a01eb2860bb136200b62b09a7a8529283f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ce88004f09366b9726781fd2ee79d1dcc391a8dae0263819518f4ce35d4c8b26
MD5 8e194f2973d43d968f1a920a8d8f9add
BLAKE2b-256 d3e3ad3aa958b2f81672a03e6e85e3a65249301ea8c322f5172b077ba75e82a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fuzzy_date-0.3.0-cp39-none-win32.whl
  • Upload date:
  • Size: 182.8 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.3.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 3b1f8d7df5fd0abea17384359d2645df6f31cacc991f3f810d0eaf8710a4959f
MD5 83388ddc6283d9bd0eb3d7ab68226613
BLAKE2b-256 92c3fde24ce8cc2ea5a668d4885edc904aad63b2159a8f880222e7dab962c27b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5723c4aac08a4b62d44683c147f4d8d691787d94c5d15a7b8dc42de9308c655d
MD5 ef16ae24faa22cf6dbfd68c9eb315030
BLAKE2b-256 bffd27cc8a8b9bc22b84d6b82adecbd276937d73fbc5d9bdfd44f641ba8d1400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80faeac0220fe17d6e57f3f68856d43ebb4c57fcce34e08d0649ef4afe610f34
MD5 70fb8f7541cf43672ecd3b7c89a55c80
BLAKE2b-256 46a656de20595916daafe69f8203c60731478afe4f41c6fcfb8a64f3ccd74251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 867585a8dbf573f32f6f656c38e7623b432c002be278cdf2f8248b1581cebb2d
MD5 68c043aa90d5f914f04efe0b271342da
BLAKE2b-256 f21e4d246e2ce16c703eae076fd564c094820a4a1fdbddafea870d67848b96c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b785d327089e5cdccfc2f1370b6775633253970cccb8861b804985c40197d78
MD5 5e0c619cbdde2e585aa137ed97ce0ec0
BLAKE2b-256 0a728a7275e1f27fbdec0c8e8bd919a02520c40835d3893b35f62b1e0c0873c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91a0a99e19348abd7dbd04be75d3ef155fb9643c555ce8c61768c6f87e99373d
MD5 58bdd4dd9c959b922a0b7874cadfadc3
BLAKE2b-256 3d191432c5bce985446177a44abf2de2b8e08288f29e862a4471bc00a04c875c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 109b2330f59bf165b68136a56cc1d9556e8a2ee3bb9d9a08ea9f91f2cec18ed0
MD5 6446034cc0ffa9fc9063b15aeaf1d0f7
BLAKE2b-256 4e260868fc71966a7078a78019d35813b19508ac2fc6dbfbbed7b98eef52ab9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 791230f62e06ff4ee59b3756dee17f8b117a55f52bce9913d420ef89a021834f
MD5 21069cdbc97ff8f12bce4880cbd31591
BLAKE2b-256 7112bca4bed0b93b0a8bdd336488680e25e2bb6cf86553ccfae9c35f55f5c5b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92162659301cf0e034d238453fef905b7bba7a08fecf39106000ad28750be97e
MD5 8d41e86f68ed91eb6c560d37294a4d63
BLAKE2b-256 e686dda18b34551fc44f3a22fdd56f6d403a6ad541c2578c6147ea9ee27486e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a7dda706412751bfc215f41071af78762e590105e513833bc02c2c770868e28
MD5 c19c28234139b4e348544ee594c53505
BLAKE2b-256 6aff668a325349986d720fc325a0608111e6cc6db3433868c90431d8f550edcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 672dc379d5c7fa6fd7db67a05cb068ba6cc724b0cfd2ccadfd5c1d5c85e7e683
MD5 6e8d06ced7d706f4dc956ea21e8f50a7
BLAKE2b-256 65272f97d3d59ea2f64c185459097bf6405afffb6a6e885a683e662149f884e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45ce2dbaa20fdb324f23a9a95aebc92ceb2a03d019e0d10537e628740f9ac4de
MD5 3840115ed50b497f8ff8e23cd7d31cb2
BLAKE2b-256 2b2b7189eadc8d66fd6dc6be60ec3d62e889ef2dac898ce07947fcfd38e1b6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 b5ce6c0d08f618432c8fb30dc36b73e4359a2563f5c30457d7fc9b90260b2bae
MD5 42d9f72fdcf018b987be15c63df6d162
BLAKE2b-256 eb1487f91e3db00da5f16486a21c48ddda646e56eb5075c1c340f6b666df1af1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fuzzy_date-0.3.0-cp38-none-win32.whl
  • Upload date:
  • Size: 183.1 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.3.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0fea628a305635a68e042d81f336e016dfa4e822b3bfda296641085de35c564b
MD5 ea698b36d667cb1eee740498c9435579
BLAKE2b-256 3dd1d821105644a068f643a77b60f5ef1c8f73b4195a8bdf05bb04008a788704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 928fe1bb2979a87f5ba155f03515e6c8aa1289f4da479b8f45d59b8324861e21
MD5 c8c6d8a01b0233041b8131308dce16bb
BLAKE2b-256 ba06666d2f1330e39adf30d8daeb6852eca58ec6c691d8033ebcad99b3c7a002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc24eadacb24998fa1b7b5ff7fdde2ef217ee209b909778d28e9dabb11ff6a8f
MD5 1f5d3fe6f85a11d8b15c118f8f11b8b6
BLAKE2b-256 c527c68f8f63fff53a585e5b054b019078dfbbf1ba41b0d72f78c4f76bac6569

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03e5591502ce781fc5d5a058586cf354069a5c01729d55f9e590e918bfc9c8e6
MD5 0e10e67cf8b004b52408e1e4cc2fee80
BLAKE2b-256 0fcf6b5772cfe4be76296aaaa178c8d9f61e5e08cdb746d3cd12c23bd65c5c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47396fe43f1deb4a0cc7f296fbf52bad4efc9c1c22776bce579c9642fd74f2f4
MD5 b5e80a2227c14f0afbee8c064133ffd2
BLAKE2b-256 769d7ea815ddae5bf168d503053ec4e6747413e5d2593b25bb25876e3c7455c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d27e573f78320e8d1553154b43aef564e3032307c5a4b99009f797975a127f7e
MD5 25f0cbc4ece345ae059cfd160a24cf66
BLAKE2b-256 6f8f78097cd569a11420b2c2f77504e2523d3fa0094f1e021c1ed5b5d7365e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a972e5df24560ed09c044c7f49ff844a0e9beccca17e5e0bb337981bdfcdb7e
MD5 3c1332d61b57a230a2f62240b7a431c2
BLAKE2b-256 41044b8de1882ba4d77b9c73b5332936ec742b550d5fcd0ac7260339668b5a19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 778905facefeadff4597bb77cbc1b29e5c6d92ee3e6ebd75e85d7c2fe47434c7
MD5 096144cae7b1e61a44bd99a96efb1241
BLAKE2b-256 e495facdb990a602943048f931fa61cdfdf5b14e237f0ecc547f29086f960de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ebba733355e320f74884418553099befcd9346b3fa1694eafc7b0500c11d56c
MD5 a32af8fbf1dd8c767ef45a2a7ec0375f
BLAKE2b-256 8e72c278338dda4277125576755e26fac05280ac73b65830c4c55618d22a0bda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50d85051c4ef34860d8e475b8d4b0f27d1671a6f6afc77cda80519017c999672
MD5 eff35fbdc303f33b5fa448092e09a3d8
BLAKE2b-256 e5301d458ac08543b078e59fd0f702c91cc880576097b481e54fce6e8ac9b734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fuzzy_date-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 48e776fbfa6b5ca04eda6f99a105a9fe70570a614a650153e3901c044959feea
MD5 05b7c897a5fa7b4ef99a91cb25b69dfc
BLAKE2b-256 d477bb5f647b03b2ee889049b7d58d4a8c25833ec8371db31aa92152e95fa1f4

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