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
Dates
import fuzzydate as fd
fd.to_date('2023-04-01') # 2023-04-01
fd.to_date('20230401') # 2023-04-01
fd.to_date('04/01/2023') # 2023-04-01
fd.to_date('01.04.2023') # 2023-04-01
fd.to_date('1st of April, 2023') # 2023-04-01
fd.to_date('1 April 2023') # 2023-04-01
fd.to_date('Sat April 1 2023') # 2023-04-01
# Anything invalid raises a ValueError
fd.to_date('Sun April 1 2023')
# ValueError: Unable to convert "Sun April 1 2023" into datetime
Relative time
import fuzzydate as fd
# If current time is April 1st 2023 12PM UTC...
fd.to_datetime('1 hour ago') # 2023-04-01 11:00:00+00:00
fd.to_datetime('last week') # 2023-03-20 12:00:00+00:00
fd.to_datetime('past 2 weeks') # 2023-03-18 12:00:00+00:00
fd.to_datetime('-1 week') # 2023-03-25 12:00:00+00:00
fd.to_datetime('tuesday next week') # 2023-04-04 00:00:00+00:00
fd.to_datetime('last week midnight') # 2023-03-20 00:00:00+00:00
fd.to_datetime('-1d 2h 5min 10s') # 2023-03-31 09:54:50+00:00
fd.to_datetime('tomorrow') # 2023-04-02 00:00:00+00:00
fd.to_datetime('prev Monday') # 2023-03-27 00:00:00+00:00
fd.to_datetime('prev June') # 2022-06-01 00:00:00+00:00
fd.to_datetime('last of the month') # 2023-04-30 00:00:00+00:00
# Anything invalid raises a ValueError
fd.to_datetime('next Summer')
# ValueError: Unable to convert "next Summer" into datetime
Time duration
Duration seconds
import fuzzydate as fd
fd.to_seconds('1h 4min') # 3840.0
fd.to_seconds('+2 days') # 172800.0
fd.to_seconds('-1 hour') # -3600.0
fd.to_seconds('1 week') # 604800.0
# Anything other than an exact length of time raises a ValueError
fd.to_seconds('last week')
# ValueError: Unable to convert "last week" into seconds
# Because years and months have varying amount of seconds, using
# them raises a ValueError
fd.to_seconds('1m 2w 30min')
# ValueError: Converting months into seconds is not supported
Duration string
import fuzzydate as fd
fd.to_duration(3840.0) # 1hr 4min
fd.to_duration(3840.0, units='long') # 1 hour 4 minutes
fd.to_duration(3840.0, units='short') # 1h 4min
fd.to_duration(3840.0, max='min', min='min') # 64min
Localization
import fuzzydate as fd
fd.config.add_tokens({
'måndag': fd.token.WDAY_MON,
'dagar': fd.token.LONG_UNIT_DAY,
})
fd.config.add_patterns({
'nästa [wday]': fd.pattern.NEXT_WDAY,
})
assert fd.to_date('next Monday') == fd.to_date('nästa Måndag')
assert fd.to_date('+5 days') == fd.to_date('+5 dagar')
assert fd.to_seconds('+5 days') == fd.to_seconds('+5 dagar')
fd.config.units = {
fd.unit.DAY: 'dag',
fd.unit.DAYS: 'dagar',
}
assert fd.to_duration(86400.0) == '1 dag'
Requirements
- Python >= 3.9
Installation
pip install fuzzy-date
Syntax support
Special
- Date
now,today,tomorrow,yesterday - Time of day
midnight
Relative
- Adjustment
first,last,prev,past,this,nextor+,- - Units
next week,next month,next year - Weekdays
next Mon,next Monday,Monday - Months
next Jan,next January,January - Numeric
(s)ec,min,(h)r,(d)ay,(w)eek,(m)onth,(y)ear - Ranges
first/last day of,first/last Monday of,first/last of month
Fixed
- Unix timestamp
@1680307200 - Date
- Numeric
2023-04-01,20230401,04/01/2023,01.04.2023 - Textual
April 1st 2023,April 1 2023,1 April 2023,1. April 2023 - Combined
01-April-2023,April-01-2023,2023-April-01
- Numeric
- Day and month
- Textual
April 1st,April 1,1 April,1. April,1st of April - With weekday
Sat, 1 April,Sat, 1st of April,Sat, April 1st,Sat, April 1
- Textual
- Week
- Numeric
2023W13,2023-W13 - Textual
Week 13,Week 13, 2023
- Numeric
- Month and year
April,April 2023 - Year
2023 - Datetime
Sat Apr 01 12:00:00 2023,2023-04-01T12:00:00,2023-04-01T12:00.410 - Time of day w/wo
at,@,14:00,14:00:00,14:00:00.410,2pm,2:00 pm
Methods
Conversion
fuzzydate.to_date(
source: str,
today: datetime.date = None,
weekday_start_mon: bool = True) -> datetime.date
fuzzydate.to_datetime(
source: str,
now: datetime.datetime = None,
weekday_start_mon: bool = True) -> datetime.datetime
fuzzydate.to_duration(
seconds: float,
units: str = None,
max: str = 'w',
min: str = 's') -> str
fuzzydate.to_seconds(
source: str) -> float
Configuration
# Read-only
fuzzydate.config.patterns: dict[str, str]
fuzzydate.config.tokens: dict[str, int]
# Read-write
fuzzydate.config.units: dict[str, str]
fuzzydate.config.units_long: dict[str, str]
fuzzydate.config.units_short: dict[str, str]
fuzzydate.config.add_patterns(
tokens: dict[str, str]) -> None
fuzzydate.config.add_tokens(
tokens: dict[str, int]) -> None
Benchmarks
Benchmark is perhaps the wrong word here, as performance is (usually) less important than accuracy when it comes to parsing fuzzy date strings.
To get a sense of the accuracy for fuzzydate, we compare it with dateparser,
the popular date parsing library for Python. Although it has a slightly different premise of extracting dates from HTML
pages — which can be much more vague — one would likely still use it for the same use cases.
Summary
- Comparing
dateparser 1.2.1andfuzzy-date 0.5.4 - Testing 45 strings (26 fixed, 19 relative)
- No timezones included, as
fuzzydatedoes not support them - 8 tests get different results, 1 only works in
dateparser, 11 only work infuzzydate - For identical 26 tests, mean execution time is 189% faster for
fuzzydate
See benchmark.py for implementation.
Differences (9)
Current time is assumed to be 2024-01-25 15:22:28
| test | dateparser | fuzzydate |
|---|---|---|
| +1 day 2 hours | 2024-01-24 13:22:28 | 2024-01-26 17:22:28 |
| 1705072948 | 2024-01-12 17:22:28 | |
| 2024-W16 | 2024-01-16 00:00:00 | 2024-04-15 00:00:00 |
| 7.2.2023 | 2023-07-02 00:00:00 | 2023-02-07 00:00:00 |
| last week | 2024-01-18 15:22:28 | 2024-01-15 15:22:28 |
| next week | 2024-02-01 15:22:28 | 2024-01-29 15:22:28 |
| today | 2024-01-25 15:22:28 | 2024-01-25 00:00:00 |
| tuesday | 2024-01-23 00:00:00 | 2024-01-30 00:00:00 |
| yesterday | 2024-01-24 15:22:28 | 2024-01-24 00:00:00 |
Note that using a specific language or adding more settings can change the results for dateparser.
Unsupported (11)
| test | dateparser | fuzzydate |
|---|---|---|
| 20230201 | None |
2023-02-01 00:00:00 |
| @1705072948 | None |
2024-01-12 15:22:28 |
| Week 16 | None |
2024-04-15 00:00:00 |
| Week 16, 2024 | None |
2024-04-15 00:00:00 |
| first Mon of Feb | None |
2024-02-05 00:00:00 |
| first day of February | None |
2024-02-01 00:00:00 |
| first day of this month | None |
2024-01-01 00:00:00 |
| last 2 weeks | None |
2024-01-08 15:22:28 |
| last monday | None |
2024-01-22 00:00:00 |
| past week | None |
2024-01-18 15:22:28 |
| prev monday | None |
2024-01-22 00:00:00 |
Performance
For 26 test cases that both libraries supported, measuring the fastest run of 100 executions.
| statistic | dateparser | fuzzydate | diff % |
|---|---|---|---|
| mean | 0.060186 | 0.001607 | 189.6 |
| std | 0.012205 | 0.000117 | 196.2 |
| min | 0.039103 | 0.001451 | 185.7 |
| max | 0.088111 | 0.002023 | 191.0 |
It's perhaps noteworthy that native datetime.fromisoformat() was still 197% faster than fuzzydate, when it could
be used.
Background
This library was born out of the need to accept various user inputs for date range start and end times, to convert user time tracking entries into exact durations etc. All very much alike to what timelib does.
Other implementations are available, but I did not find one that would have worked for me - usually they were missing support for some key wording I needed, or handled user vagueness and timezones in a different way.
Also, I kinda wanted to learn Rust via some example project as well.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fuzzy_date-0.5.6.tar.gz.
File metadata
- Download URL: fuzzy_date-0.5.6.tar.gz
- Upload date:
- Size: 55.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58984745877fbbc56a4f9718637d2fe968daba0058a2c13ed8598158761f1091
|
|
| MD5 |
b2f620eef5be862a7996f9a5435c16fc
|
|
| BLAKE2b-256 |
bc1805afb741eeb6d4dbaf77ba4f4cfe7bb13dda27c3cc810ea2c037df78c95b
|
File details
Details for the file fuzzy_date-0.5.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 585.2 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8eb4f28e36106f187c50f66866b63eac5f14a6ea3fcead4eecc9bbd594d892e
|
|
| MD5 |
d17d66555123ebba063265f217e72ccb
|
|
| BLAKE2b-256 |
9d4d55b84b4078fb0123f28785b1117da3a3fb48702b451585d77bd6f65aa963
|
File details
Details for the file fuzzy_date-0.5.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 618.1 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02d2246f7673c0348e1adc9f72e811bf11867f7651fe6faa655646eb88d64157
|
|
| MD5 |
5550b7a0788400d5f92af8cf613d9e85
|
|
| BLAKE2b-256 |
1ad7d2f9be3cd65cfaf4df59caa642d7ec93b22d32b03538e532f922a40d74b7
|
File details
Details for the file fuzzy_date-0.5.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 691.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
287563e9255d05062af0c4c4663dd5e20c7f201972bb857ca347faaee6863fb4
|
|
| MD5 |
b56959c0ea7deab0158b4508620e9938
|
|
| BLAKE2b-256 |
e4a92538f4a860397642593baf37ab82c0ac1ac87350fee8c80fcd58f305bf51
|
File details
Details for the file fuzzy_date-0.5.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 589.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cd5837352f2ae54beb64ff319ef96cb0d27efc07b8b2ebc7ec8fe2774a163de
|
|
| MD5 |
4d0e67e12f326d9c5359b121cc5469df
|
|
| BLAKE2b-256 |
ab341be0199ecbc2d167c4f890fde1d7669809a1b3f7875ce59c8192a650ff98
|
File details
Details for the file fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 415.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d29b06a69e6b1421f55e992f19edc4be6796d9664fd78159abf9d7a34354a99c
|
|
| MD5 |
5e2ce9a44531635f08fabb5ae6839657
|
|
| BLAKE2b-256 |
c87ed9cc11e5c17b8a5f567137babb1da64f467d596ac20d548454852fe2a51f
|
File details
Details for the file fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 482.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3be46c5069290bfbcfe7439d414c25b5c07e77330ca9e9b7cc907e32bea010bb
|
|
| MD5 |
7bb4294486bfb83f0bf21a7566206ace
|
|
| BLAKE2b-256 |
6bf0965aef636ab81d8ca5d8b56d623b608c6653ec5fc0a63f221187eab5e773
|
File details
Details for the file fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 479.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec34fc5ebba6fb2b1f6196d0ab8ee5ab47f922a2126880945698c4835fbaa8fc
|
|
| MD5 |
5630fec288a6c5920961e061cedc3c9d
|
|
| BLAKE2b-256 |
10921a9e869d68a8ca5a13f705481229fe71b62eef370e12a8757f1c81846901
|
File details
Details for the file fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 428.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a3fd0477a607c8fa032b127d055bee22c73817b95d8023f97fa33a011ac65ba
|
|
| MD5 |
c2951864e0c586eb30251c928406ce47
|
|
| BLAKE2b-256 |
31a92655579a1621f309a0637f8dc82864ef9ed2007efd4f87b413d11c92974d
|
File details
Details for the file fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 411.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e438a1afbd5c9c7029590a3768d5989b4559eb65e76c250a0601ae8ed2ec5c68
|
|
| MD5 |
e050bc34de5ff3d16c5413a32803a5d2
|
|
| BLAKE2b-256 |
d162ee4637b1bb822e7c65117ffc59ee6d8484fbe0fa26b8f509be55b739ae45
|
File details
Details for the file fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 446.8 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
492fb78c68306d90a7d951cd97301e525eb52f7eb25985639f064c70f18b3df5
|
|
| MD5 |
3784653a71350a0f1ae901abf2da8659
|
|
| BLAKE2b-256 |
c008e276026d5a8f3788d2e1cfa10312bdb0fcf537ab236c8b3d369117f45fe3
|
File details
Details for the file fuzzy_date-0.5.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 585.2 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c7562d260d10800f47cdbdf70717be03e5de7d26ac32b07482da7e607d9212a
|
|
| MD5 |
13e961f838575dd21c1d928fb0dd2624
|
|
| BLAKE2b-256 |
4c92a1707163ce4bab5cceaca7f00406397ec06f34e1ae7f1b3cc2f4ca464f73
|
File details
Details for the file fuzzy_date-0.5.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 617.7 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
428360808bd4d95377dedf1738f0797655dd225e3449bb9dece179c8611f53a3
|
|
| MD5 |
a7df45eb439c4ca76b8554d122bd1ca1
|
|
| BLAKE2b-256 |
d5d8ce494243cda6d0e6ef3f7755131505dff5e1c23e13f5deeafbfda8cc8dd2
|
File details
Details for the file fuzzy_date-0.5.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 691.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5515bc150f53902ad4d4daf032b64d973d992e77df2eb48e44b8e6651468ef98
|
|
| MD5 |
5a49db43fc3173e181a0ee63f2c9b0b4
|
|
| BLAKE2b-256 |
fe38461f92d04ca8ebc5405a9bc387df337ba70c1e4ac3a8dd614d54a07f3efc
|
File details
Details for the file fuzzy_date-0.5.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 589.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36918d56c8db1831c44b20ff52f44e9095a02cf547f0b4aa36f532e4911affad
|
|
| MD5 |
c79b19371b73918591cd34dea4770f22
|
|
| BLAKE2b-256 |
dae91b721539b2baf7b1bcc2e596cb12b2dfd9932e9885a726a417b670b4f2ba
|
File details
Details for the file fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 415.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e4cb5e70f9c872da19ab40340e770789110d97e83a90f82a24523209579fc71
|
|
| MD5 |
309d75e3fc363431d0328f363cbd88c4
|
|
| BLAKE2b-256 |
28a9f75525cd6889f0393c909f4bc2bcb7126fdf5cf95819b4608a087211058d
|
File details
Details for the file fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 483.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce716cd070f59a7bd18f355b509d3034d7cb555e64651f9aaef0d2a8a92dbb3d
|
|
| MD5 |
f098848d912738928e69eb4bf20d3b6b
|
|
| BLAKE2b-256 |
c4efd457efecebdf589b866e3128e255441c5526da0ff0ee920c555ced051381
|
File details
Details for the file fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 479.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92935859cc1494594feaaf51a1201fe10e5c95f9a888ad69e3ec5ec20f260021
|
|
| MD5 |
af2ec030db5143f5428b602514ba8bce
|
|
| BLAKE2b-256 |
45a9a9a49e5a22bc8d6c738748b180e0e10730c14414240462e90eff3f41c04a
|
File details
Details for the file fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 428.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51ece45b98a502ce4441dd6e2c1f89e4f0d0b6775fa0723d13b757f386d720dd
|
|
| MD5 |
90c9d94b021c52aad2a0c788ba2e1c96
|
|
| BLAKE2b-256 |
071c1e90505e6e9018170bae04d780652211f6846234a41addc801a65a61d619
|
File details
Details for the file fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 411.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b1c20642f81034910634524ffcf06c77dd5a5cef51651ff20ec437466d5e2f5
|
|
| MD5 |
47fb56fa4dacb99ab1c1eee5d70c9fff
|
|
| BLAKE2b-256 |
856111964e7dc5039b73b8a4f69deed7df605923f34a01f8fbf59024eba509f2
|
File details
Details for the file fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 446.6 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44b3755d3bf64f24ff8f99cd0f314dd16afbdaeccbd9884fb1c57504719cd1dc
|
|
| MD5 |
75dfdda4fe5d84b9a3465d2d30ce3b98
|
|
| BLAKE2b-256 |
1730aed2513d0e539094ad372ae3f94d9e472b81934169566591f010df6bdf7a
|
File details
Details for the file fuzzy_date-0.5.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 585.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
994c58013b84e0bb66937bb7d692abfb58d98c4b13ae772722595a34b915cd9f
|
|
| MD5 |
0f466a83f272c8c716552826edc7ebf3
|
|
| BLAKE2b-256 |
b9dac78e8615fd1afada38143b5c458362f87d78f0bac85fd688fab16d5d9acf
|
File details
Details for the file fuzzy_date-0.5.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 617.6 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb82735615e407f821f1c27974ed540c54fafd716b5aa7582986db4428a8cb4a
|
|
| MD5 |
4c54532f5ffa47184b40fcefbb1655d8
|
|
| BLAKE2b-256 |
68ec01dec7440df6eb65e5c7b386f94aa452c9c5fed89f7f3d1731d12bedebea
|
File details
Details for the file fuzzy_date-0.5.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 691.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83f583564c287045737d7a6799eb658150e0e80e77433ff0e1a29859099e5cf5
|
|
| MD5 |
e6d09f3a048fcbb1c78a8cc763a7a41e
|
|
| BLAKE2b-256 |
af38b1164a49b283684123036d93a46a567ed4775fe51e1f053466ba20be517f
|
File details
Details for the file fuzzy_date-0.5.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 589.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5962a9a79d356af030fdb21f825dce58116e94d52c6a12d38556d04c661cc811
|
|
| MD5 |
1f2fc38b12766202ad4acfe1139e3cbe
|
|
| BLAKE2b-256 |
547652ece6fb6fcf96ea98f7a5e42780909ae0f571a37d9c6d5998be0f02e0dd
|
File details
Details for the file fuzzy_date-0.5.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 484.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11f98f081eeb67966cbadd4890b99413bdc1a161f4ec8248818b7ef2cca2bfef
|
|
| MD5 |
8b51d05496da5d7aecac2825ea15d826
|
|
| BLAKE2b-256 |
65c2dc03ceb977a26f31d72b0bb3ce7fd436d8b31ddd566036c3f18b08c0ccd6
|
File details
Details for the file fuzzy_date-0.5.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 480.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60fbcced8175438254dfa34d9b9e22ec7d47782d051a39cfeb63f0e25dbe7b41
|
|
| MD5 |
b5ec120e11eb8b9e5e5ddf6d8c6b9310
|
|
| BLAKE2b-256 |
c7ba1139c24e41e9e9ed5b4f9e390479f1f5301bd3db12355adb91bb5f3b8c67
|
File details
Details for the file fuzzy_date-0.5.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 428.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
544e4f0f073baa4ae2165d050f66420346b18ce9b39dc27d697498017a9069ff
|
|
| MD5 |
571ca39e1fb2f94d374cb04a6eaeffc9
|
|
| BLAKE2b-256 |
98dc16777f341e0994889eae0abeda8d242f5eed2ae4e290af0d085d83167d1f
|
File details
Details for the file fuzzy_date-0.5.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 412.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a20528c89cc76920c881f07321df0cd0f729597693962cd37f48fdf396b0635
|
|
| MD5 |
a3ce891f96ad443a9fa587cf4ade490d
|
|
| BLAKE2b-256 |
385d3ebb9605c71b2a34b9a238e242ea7dcd0959d5af98a2b4f7f5c124703418
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 581.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc7d40f68cfcc542bac84d49c3419cde53df7896c002cbdf3f81cec7f8adcc5a
|
|
| MD5 |
458484191a54f6aa65a9b4d029b1f415
|
|
| BLAKE2b-256 |
38312f1cb6c6544d4b40e55fc2b6b8e8171d82435ff0b89c679ffe1e9d233ba7
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 614.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d16017ae94899cbd49e8b464160bd8cb8c8d7573fbe7fe1f29daaae573ae8749
|
|
| MD5 |
7239adb514a743e6d55233c5a0f07436
|
|
| BLAKE2b-256 |
c89bdaff35f219427514e1d9561db84cca12c981bff818e1f2ac7f62f6924aa5
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 686.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02aa3e1581316ce1ba50e67ddf171f93721c067e5ac6b85f4bbb6818a0ad0abf
|
|
| MD5 |
82c8593654d0ce2c072f9ea2edf912dd
|
|
| BLAKE2b-256 |
3a2c3ef6c5d63b0b9ff3b2c351fbcdad40b9091ab02a6600f3a66664a086027e
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 585.5 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09d337551c5b32ae4d8a62ac3e1fe9416c4e7d4d417c16cfe5c2499d871569f7
|
|
| MD5 |
4f47e5bae6cc5752a5627d5c72be1af3
|
|
| BLAKE2b-256 |
5a303e537bb572db43f38c100e1be031175b8c48ca42a4f23e92151fbc872de5
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 479.6 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ec4dd95ad222f4cf990642123d51ce3f5c8fa2b5989c44026d7a55a15c61239
|
|
| MD5 |
219f37c88b3a40fab55a656c1c946306
|
|
| BLAKE2b-256 |
89e91a3ae0d2569c8f76296badc380b21a75a0c165f12cc6c028ff9dc65dd650
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 476.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
757344ab6e02df6b4a6550433dc6172ed54985cd75d45de8ae4061f77dfbd0e8
|
|
| MD5 |
bb81cc391f8fb32e60352373b35cfa38
|
|
| BLAKE2b-256 |
6da8b8f96cdf1804ff8d4d71f5496e25546e76eccc69d7c23dafeb337f0d2212
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 424.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68fdcdcb12694a14d196d6e590741753bb46f6322c42d63ef1f51f44151afbeb
|
|
| MD5 |
f495a50c9eb6f5fa131a71e2e0217ccd
|
|
| BLAKE2b-256 |
7c7757ee5ab2e8e9fc4efe46bd044077f54d69106556d975695d0e87c4761bbc
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 407.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4945d05ff1b492416f0e9a8537a31805cd9628be8f4b06ff73dad0434792104
|
|
| MD5 |
8254331e49e6b1c5abf11daca82adc2a
|
|
| BLAKE2b-256 |
d061878f6a310fba5f3f2cfacb3acef5242f8e16ed4412cf53760691db594834
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 247.5 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0942642db903421502666585a61b0fbcca3b2c59c69d5893aa01fa1791d9dbbb
|
|
| MD5 |
86a044a363755f3badf3c9368d423213
|
|
| BLAKE2b-256 |
3cfb730967b80c13769578163a5ced1bd5c7618ad92e9050b371dd10a7be642f
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-win32.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-win32.whl
- Upload date:
- Size: 240.3 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e64bc0d20df507963f33c5551a3657e0b675d327a8c4bc96b86d7f05fe8a612
|
|
| MD5 |
c22d4d7cc55f572e99ed7bef8d2d50f5
|
|
| BLAKE2b-256 |
3e5bf90109c275bcedf9b82c0ca9a2100dcf681a76a3795d669b492d715b003e
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 581.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad0a8d69a0f8cc9eb0aefa959e06b42670fb2a668a7624039f0e3a3028237e12
|
|
| MD5 |
4f417fad1987cabdaecde1ca43dc5ffa
|
|
| BLAKE2b-256 |
75f0d4319b3822e9c104ea9d16edf3e3076cb927eea48a3a9136fa4ce78f4627
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 614.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a2dc5e7961ef090ab84f677f0da88eb7ec3fbd550c1d3b0ad4cc9180d953bc4
|
|
| MD5 |
6e0960a11e0f32e1ff049a7e3e98cf56
|
|
| BLAKE2b-256 |
09d9ac219ff976749f297493609e7d5fee8c303255b002884d78992f96b51f3e
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 687.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e8019154a6e23a01bf8186c324df65391eef6b174d14fb700dfca83e5e9eaeb
|
|
| MD5 |
04922e2c855f52b19de7bcb655a1e5a7
|
|
| BLAKE2b-256 |
09eb8306639e434a33ecb035ff761299357779a1151e48c6e5b2a33963b822b8
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 586.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b92da73cdda4ba604a850280e3d9f443f07c587f210f2de3bbf64167660b08d5
|
|
| MD5 |
9fdeecb8eee8f1fa019fb3e7a95147ea
|
|
| BLAKE2b-256 |
a2262a7709afe1dcd628d6c86c590c7a902205dd191b8387036660773106dd83
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 412.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2753d81de5d08fe14c39009d159f4b07559b5f5b00d2ef47339eeb288534262
|
|
| MD5 |
1ec588588134bec2e6884bc7b2335109
|
|
| BLAKE2b-256 |
88ed5660e7247e4f9c796600eb7ca545ac1b98e826e37ca22e5ce1a540fa8512
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 479.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f82203fde7310e5c170039dd84887efd84b93a4bd906e160044fa0c50354870
|
|
| MD5 |
f7ec0e01c8f063def75ae340e4f210d3
|
|
| BLAKE2b-256 |
0f0caaf91008ddb0894cdb2bd1c5c7dd2651198a45d011acf7047034617dc7be
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 476.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0f43027a30fccf10630a06a8633bf468526059b4522ef475113977b50f9149d
|
|
| MD5 |
c6c6307200e765e1bc920dd69a9dd5bb
|
|
| BLAKE2b-256 |
a0c94188221f692ca7a593030df4f7f780eb3d798e2f18ddaaa5553cef3dfb5d
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 425.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73aae931f5bf33d13adb2d5fd3b64dfe3c31962f084a84af45027a32f51521bf
|
|
| MD5 |
2b2585b425a6b27d39f47cd3c8b4e1ea
|
|
| BLAKE2b-256 |
bc07de207f9b6417077ad5a38cb84a32e84ced94801f0642e7c03c6d964bb704
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 408.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a502076fb5463e0614cd004926ccecd02b2aa12e89fa6d5f449d9e98e56d8ef
|
|
| MD5 |
c9c06e83e9bc1ae57355cc2994a81ceb
|
|
| BLAKE2b-256 |
e9ca0527b0fcc8da9dd9c8d2c400e3c2b2cd42059c3b4b50deeb7d45776496e3
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 442.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4042fa2d2860170b80db6014e90d0f4b16bde1b0267a71b1f707cf81ef68c6be
|
|
| MD5 |
fe985d8593119a79c6d9006845c1faf3
|
|
| BLAKE2b-256 |
f3269da796758e432f31d864921a7a88b83996b3f5df22a0c6d499344a9ef8c9
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 362.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99a654f526d504e7d31922c50d0e187ff2ba85f39f4ba1262b68b22aed6e52bf
|
|
| MD5 |
b83cfbc6f00bb22b0e319e35cd041a05
|
|
| BLAKE2b-256 |
dfdb7f094ef448ca9091d1980b0b11b0cd16fe83079b118bc532bfcd2745ada1
|
File details
Details for the file fuzzy_date-0.5.6-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 374.5 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28906834d38698393aed7602d589a9e1a443966f416aca2f9cbf46162ae7098e
|
|
| MD5 |
300c044483811ad0078ba28179764637
|
|
| BLAKE2b-256 |
50fc1a50c0807233b6a2b71184b1eb7a8e0d32d62c457e0f370976e8f12713bd
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 248.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97a3c5c77a07963361b8ae12de68fb410bd280f2eadc392a5e78b5369fc5dd56
|
|
| MD5 |
1e6ce4c1992edb40e5722b100b16ce8d
|
|
| BLAKE2b-256 |
ebdaba8fa00220c81eccf7f4fe5c1c64d0a4b5ca55adbed0963913f39e133b73
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-win32.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-win32.whl
- Upload date:
- Size: 240.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9730b3a8a022b7c99e5aec9cb9c85be95bdbfa27a07aabda2bccd1917f3255c
|
|
| MD5 |
6dd9bed57b4752bd770d60b9e8431e03
|
|
| BLAKE2b-256 |
f22bed410ef224f8d6cb839d9a69e6fde9ac28008c7d94c64a94446a9ca8e734
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 582.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5abe59a10900294daf166f736514499702e35ff1acf405c5db2177d05a0ee337
|
|
| MD5 |
cb9b67b1786e86e43ac1c75a85fa7be6
|
|
| BLAKE2b-256 |
ba3315c37fc86d1b9070061fe17ed7ca01d96fc43281b4ced58333fc6b419405
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 614.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
555c4b31ff64b89a7ac9c59ff5213acd6fc703774a636ca951a827dd95282b69
|
|
| MD5 |
673deeed8ae1ba4be67e7b41c46e4363
|
|
| BLAKE2b-256 |
02e5460243479d16910d7b243f25f85405755abdaf662107a805700557e75669
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 688.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf16309452321ccaf449cb3233d5b2ca25ef282d97e6d3f70e12f622b5c5da80
|
|
| MD5 |
7eedc65295554eacd30a6efb9c9ca91e
|
|
| BLAKE2b-256 |
4dd5106cb96a0b4ac89d2721fa49bbd1620d7e1e3e06e6b66bcf5bbfdd3c9794
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 587.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d291a145c6ad7a432247733edbca664a89ed8442b34523e8ef1747a7ebda6d2
|
|
| MD5 |
26bfc92d4a0842a094c122a9e31185ea
|
|
| BLAKE2b-256 |
5605c584ba5776ea40a48f4ef312a3f7d1bea6b9759df0e7dc40231aad994efc
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 412.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a1ed92ef2b7de98424441bc359df2dca99d0549d2d4791916eb34af22082791
|
|
| MD5 |
e7726db1ec4d37911fe152751f88ac37
|
|
| BLAKE2b-256 |
6e68fc254505f12ae415106b9c54cb872dcb311e4747d9039680d6c64a2ec277
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 479.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
735133593ab52a175caee18cc72356f5f6d7ecd4a0b052845cab2c379fbeeea1
|
|
| MD5 |
80a16d000632fef5970cf778f23d8d0e
|
|
| BLAKE2b-256 |
544ff6b8ece344b06a725293438fdaade4527179f204639b9b542ba429a98e1b
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 477.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da3fc95cd12baca840184506924e037ec45bfc83d7f0d50f57786dd28cc8c8de
|
|
| MD5 |
9759f706f034bf384a849b8195d5d2b5
|
|
| BLAKE2b-256 |
0464227cd4fba84fc4fac90d3010cc1b0b7f05dc5afa6c1025a7d116ff2e3900
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 425.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04323d61c48b6cabd330ba5e0931d8e836e9bb1b6a4007ffb94eb4478a588b4b
|
|
| MD5 |
66221469ac855ce578c2349553e47685
|
|
| BLAKE2b-256 |
bc0f515de2166652defa39ec72ba2cbd70b24d16b9830c82a8f161708e45dc9c
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 409.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
506f8c211f46c15a223fea64feeb00f95adf41b953bdbb6e6295eb5eefff07de
|
|
| MD5 |
bd67a5b3912836baacf507205b275b16
|
|
| BLAKE2b-256 |
41b4b2daab0f6442298ce9f744758b5d8bb7493fd673de5d254ebf449a28f651
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 442.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f705c1908e0e06b3bf9f57185a80978a4f850c4fd930902ad87190213cbfbe34
|
|
| MD5 |
aeae4c2bb314c19d4b4ece578a8de383
|
|
| BLAKE2b-256 |
3c6fed2f7fd1f27d27b8223b26aac595fd2b1f60fa96f652cf53bb72b43f5adb
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 363.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c790704e2460752ef763577275bafcc869416312613c741474c196cca808760c
|
|
| MD5 |
fb60c0bc769c9d8014d390dca1fd566d
|
|
| BLAKE2b-256 |
b4f54fb77813d945cb9d6c400cc18f6e7c343a383f524648c13eb3e5249464df
|
File details
Details for the file fuzzy_date-0.5.6-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 375.2 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af7517bf8310bba50a8075b7671463916ca97a2a5a0afb6a9878624a0da1a56e
|
|
| MD5 |
8e46cae5acf0705d7948405303f76eb5
|
|
| BLAKE2b-256 |
e12ea1d9ea38358319e804c7da1bfd8e9a67f82ba072242c7b472397a77bb497
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 249.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70b2a856ee8e43d0a0fa1a20679d4d044c8c5b2fc35fb784350816705d7e4bc8
|
|
| MD5 |
dcae49082b65cc3304e557871845ec41
|
|
| BLAKE2b-256 |
4ffe21d82b86d80a10ae8cc604fb448a4c41724370757baf43eca1cd32171d6f
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-win32.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-win32.whl
- Upload date:
- Size: 241.1 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a19513366b7ccf8c7cd0614ade0a0c5230dba640153c02e9a33a5fe767db4698
|
|
| MD5 |
91c1ab8f4ecafb227777e275322b9c19
|
|
| BLAKE2b-256 |
4c0804b5057daca3135552faccb7306e2bb996815696e9f513c9fada8e746eb4
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 583.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09b9b4f7ab0dec910a5ac966a6b9f06a428b04ed118cb0b40d42e835308deb41
|
|
| MD5 |
f8fbc6708ef6f10f8bb698ab88f13e32
|
|
| BLAKE2b-256 |
f3f51c4d5ec81fb99b1517e0b5eab0fb40910d59b36bc64ac51de6c39437af1f
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 615.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
872fbed56a079bb4d4e907e504911d944ecd00afb22372f254e9bfbb2cacd070
|
|
| MD5 |
d15ddfa5e8f5f73ed3cab81e087b5d0a
|
|
| BLAKE2b-256 |
c1dd39a63d02397d1521eeceec802d5c897390aa0c8a17328238ef37c15dc9df
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 688.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c10d85b57163b0ca1f97f388f4dc1fa587a8ec7c0e7d19b0c6ba1a95dd34d84b
|
|
| MD5 |
cdb9b6e2ff000db52b71c93138f8a95f
|
|
| BLAKE2b-256 |
c11b42df72a7726a27755ed45f53389c550cfe788a2f2c67ebb5433537bee461
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 587.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fde62072d83821abdc3cc1339b48c4a7800930c9a9f7c92f7fd257b497a2b15
|
|
| MD5 |
a00c30f1e1ac1f4ce226831f2ee3b828
|
|
| BLAKE2b-256 |
1bb98e70f23bcb02c636dc50cfb8d12803172202079308c6fb98b1b488ba0a89
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 413.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a0c9e3d91f18275ff94bb39b6ccacfa6d48cc19ad809fc5d5ed87bc00f202f1
|
|
| MD5 |
b8462f2bbcb007176c7bc1792c594b28
|
|
| BLAKE2b-256 |
ac00ee2ccf0a280709c60370f96fe0eeb75aa7f39f21b5c3caa8884c1e452134
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 480.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
955f75c6086db3513f517286296d6e9708c42fc30cbdde4c93b13637134f592e
|
|
| MD5 |
879361d83bdee3a76a9d55e6f9c0c6ce
|
|
| BLAKE2b-256 |
290598f5396f660191a4e016bbda28f7a2304362fdc37b5000a57e4a54af4639
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 477.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2fd877879c4b457c671516b2666543eb5780eac038fcbc6071798aceee6bfed
|
|
| MD5 |
cf4f793ca66d19431f910d68da836c6e
|
|
| BLAKE2b-256 |
1170ce2b0cec5a5828ba6868ebaaaa29cc9a8860ccf83865adabe4404734763c
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 426.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbc35fbac2b3bff96cd1061f96ca06fe7c6a0fdbcafb4a905eda36e2466008d3
|
|
| MD5 |
4cb80d2b02d799d6dfa5813a039148ee
|
|
| BLAKE2b-256 |
81b2062c586cd390b0f063664417e9d6f625fb2e4b1bf8a4233e11b0dd985368
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 408.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5252c894b9835084671a8b1ab0f9005721c87a246fd76daef62c575a5d5205bc
|
|
| MD5 |
486ed4f8051621a6fd9f22b8e822beb5
|
|
| BLAKE2b-256 |
0d9bb99e38d4e457e06443b55130b4c312305a202aae2130b88cea7295bec26c
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 444.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd6cbf1e5d6edf3522e6609cbbbea74815b7ff19bc48d027535c23661ca5a4c8
|
|
| MD5 |
586e38d7467419f547dd32d28ceb18bb
|
|
| BLAKE2b-256 |
21f73341ac8eecad95de6a52ddf4b1c9a40c66275817b2568577b9bab2f91377
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 365.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01e4ded2f3359f0cd8e5065d14143606854f11cc8441636b9d775f41c136225d
|
|
| MD5 |
6f552abf7a002d98e3bb8d68131e4ede
|
|
| BLAKE2b-256 |
6e063b6132763c16c592a92bcc1db1060573d0861f47b0360764261f33164fab
|
File details
Details for the file fuzzy_date-0.5.6-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 378.5 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba6c3451b3483b15e478bb54cf32b7e98a1714158382cf68fbeddee4dc39b16f
|
|
| MD5 |
45c3789994a1a0a57f326a99f8f11d73
|
|
| BLAKE2b-256 |
9cb827aae21c92925912693ff88351677c3806263013e19e107c9ba560dbd07b
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 249.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff626d629bd4e2420703709dc6453af42df228f7c52ba87979fc478692e422a4
|
|
| MD5 |
ab252cf86ddb46d84777569b7cf608ef
|
|
| BLAKE2b-256 |
80b0401c42c92ccf380c60475633ef34400499906ea80b37af4ad0a46aa1ad6a
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-win32.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-win32.whl
- Upload date:
- Size: 241.6 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b6c979553da858024a186fb4b4164fc45476b4f0a5f4275d8dd0fe0a02621ff
|
|
| MD5 |
51665290f4cdc9cbb8af4bafdb66d056
|
|
| BLAKE2b-256 |
717877e63758059d05133b67d82a054faf94c6d1d950ae8ecca9a4c9f2456af8
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 583.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87db4f75fffa76f5abb050d5b6df65433bda208d17bb5f853e032b8bd215bab5
|
|
| MD5 |
ddb2c407b4aae12922ccc17bb2f463ad
|
|
| BLAKE2b-256 |
9f869e530874bbec62d13be3220dc8251d6222828d0ef52208ff5e44ab111f49
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 616.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56eb2251adc0af891fcf3c20cc28bd604c9915c036fe4c26699aac26c69e893a
|
|
| MD5 |
12c7ae3bffd0b93ed86006138fbe50e7
|
|
| BLAKE2b-256 |
10cf0ef4bc0d0d9dfc67f095ac7401e3849495839c402421c394aa5370aa7a17
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 688.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8e4255ebe97f3a24588c0ab1bd9e9f5b6c4505b78171729ecd094491603d2d8
|
|
| MD5 |
7d90ceea9a3a6c549b658872eccf6864
|
|
| BLAKE2b-256 |
42ab4a2934aa5b6d5c5c16add229b34ad5347a1a7ecd0f046e9b82470edecbe2
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 587.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac11c4d047a7b086a85e0e199e88eb0bdc878f6756c5bc4e333c27498c9e8019
|
|
| MD5 |
4c291a8fe9f9692c4a71d103632bad15
|
|
| BLAKE2b-256 |
eed8b6d5e4c56fdfb36c1a254dc151a9f2823615ebb440eba0f37020c84b0b48
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 413.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1625017168bf60cd31da36bc05ac1dac3bb1dbb53ff2fab55a752a04ad3f167d
|
|
| MD5 |
59066352c1488c6e10c037a4101132a6
|
|
| BLAKE2b-256 |
668573b7c7283e698212d907585ccce237460ea56ac599ecd07897f3730e0ae3
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 480.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c895c386c418d7cefac9b90e389ebf7fbecffe70fec56c4aecaa26ff17322da6
|
|
| MD5 |
6379fe68c91aa6ab61cff59f35bff73f
|
|
| BLAKE2b-256 |
2d8b0fdb26a1c2af2f9070dde63d4bbab0a665bb19ed15e4af60fc3f55b03aab
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 477.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
874d3a9a8eca4650541aa0bc8e1f0ca16a6e316b4d9d8e9d1b96b3eac480cd6a
|
|
| MD5 |
0a385e73e65d462746d466db914fe8e0
|
|
| BLAKE2b-256 |
ad47206c932c8ee107d86a10cbda9ee3e68d4789b2c4a72e7bde00890c2e0f89
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 426.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
905374decbc5fb452978a11514c0285abf90e96c86c7cf2b2d2a1ed006c60c03
|
|
| MD5 |
fe483e178768ef8efb4d0e0610b81678
|
|
| BLAKE2b-256 |
24f725d2c7d856cf23e92134b6cde1ca7a44a0a4d82da08576c7d2ecdd8b4e7c
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 409.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6b5d47e688e2a069ac0b1349a94b751f5805c5ce4c05eec92390ec7e41192c9
|
|
| MD5 |
eae722f9754da41ba6cfa1074105ee68
|
|
| BLAKE2b-256 |
275eb56d4ea42e60252794eb5ed8a583701c5e066124b16db85bf2d7c401effa
|
File details
Details for the file fuzzy_date-0.5.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 444.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb41d2e23479b47555ce6a0e1a6882001e4c78e650c4a37d822c04cb1f4c5205
|
|
| MD5 |
7dfd58e6a9f60870e2a2f68d7d92f89b
|
|
| BLAKE2b-256 |
59b9724f890fc4ccfc7e5ea743d91c1b56b3d6720dfa2f4c0487e25c357c274a
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 249.5 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a027e84d64d621028bcff5207d6682484dd2c8e8b6d919cdcbbca73cac2a2d02
|
|
| MD5 |
0668355894d96387aff58c198de2c9a8
|
|
| BLAKE2b-256 |
78cd78183c9c2edf0140735a6e3bdd2380dad9e929b0a7d2f01d910e380ec3a0
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-win32.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-win32.whl
- Upload date:
- Size: 241.6 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90b6347f86e896e49b7299987f78a91101771797b4abc793a07a2c5bc6aa1a5d
|
|
| MD5 |
fa64396a69e7cb31143bb98c010c46ca
|
|
| BLAKE2b-256 |
d881a1a73d948aa6eca76633eb3c9503ed2bec5c69b03cac40e19c06327562b4
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 584.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf9a8e4ed216f7aac8f65b9b1c4588e4985e96b1e9ba2bc8c34596a57aca6421
|
|
| MD5 |
61eaab8ce077e22a6cf16a9157380acc
|
|
| BLAKE2b-256 |
dfb5dfbf83d0c8d4fcf3bc4f40b62e28c7bd6ff8fc9b71ca699c30380eec861e
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 616.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
117278cd8c67ab9afc50b3ed5f5ae56d9d2a399b6cb0d9bb7fd96cb7c2aa6ce7
|
|
| MD5 |
05a891e57daaaa463d742dec1219bcfc
|
|
| BLAKE2b-256 |
bd87f3fa30d3932f602411fb745ca03c2586999ff7ac9b9638315a295ae45e44
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 689.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a7fcafd8e6a1dcaab2179b2d666ee3ca6972cbb05d1d4ec2aeb51932881645e
|
|
| MD5 |
f4a01cc28dad42d8b8e9322d05ef9386
|
|
| BLAKE2b-256 |
dcbd213ed8f4a47ec9593a03ff01d77cf38c895222e7db872793e6e1858a9e73
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 589.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17090a400072c90bb9601a7c2e2dd6ff066207af5756cb17636d01e611f2404e
|
|
| MD5 |
ada9c0d626f7acdc2dbc2b6c29708ecf
|
|
| BLAKE2b-256 |
ffafdfca97685754da366acd5b4124d3cae7dfe7c5c7e374b2b38b5880f3d057
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 414.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ffa2ca192848abb4e8bde28dc5949e334fe0deaa684232f3ee57a7f346ad236
|
|
| MD5 |
3a3f1053b1a4c1b5d6db9280b12d8ffe
|
|
| BLAKE2b-256 |
a28153c76f6569a27a93c92fe973053199d070b8cbb4fb1b027878d6fe1028c2
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 481.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c292f8093fad02b9c08bc9335c8cb6371827e6d2af0fd58582c54ab48893f41
|
|
| MD5 |
c9d65fc36c6f407092f66423ce7d043d
|
|
| BLAKE2b-256 |
470b7c1205712a1b56b40eef705c8f56c62c1245db8856b031453a326a5fe99c
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 478.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b879f6bdd9e680cf3829c5ef4af7c68d8a0216d220cc87f00db3fea397259d6
|
|
| MD5 |
b3916cbda5fb45f41ebce4416c58cd99
|
|
| BLAKE2b-256 |
d852378cf98c3a938f2da2c2c991819c6606ee739a0982bca9f78e03f37a1cf8
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 426.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5b091f1bae00df4bce8eb4c205798293c49201001676bc7069ed9ed3e6a91a6
|
|
| MD5 |
8e994af718e4e31333a9d525b1d7806a
|
|
| BLAKE2b-256 |
ff7a7b94b61ed1043f55e00f164fc1d17543859f8fef477ad2dda00bc8bb3032
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 411.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2e3698ba80dba7c3aff52635962e19aae21d754b69188c1b1d6b7f5573ef150
|
|
| MD5 |
9f4840a0a10c06998913058bd0a83bae
|
|
| BLAKE2b-256 |
df9f32effe60f6dd3f6c8f1abc05492f8d97458fefb7b538d6e37e0fdf78ea8f
|
File details
Details for the file fuzzy_date-0.5.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fuzzy_date-0.5.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 444.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
817c0596999386477de31b470d508c327e36f7179e481843e9db066fe6d0b789
|
|
| MD5 |
5a14df3b963ee7fba4df55e6eac87a5f
|
|
| BLAKE2b-256 |
38ff41a51ab068662adf9abbb4a4b56282ed35a811148ef06cf5a94ce708fb7b
|