Convert various time strings into datetime objects
Project description
fuzzy-date
Python module to convert various time strings into datetime objects, written in Rust.
Date conversion
import fuzzydate as fd
# If current time is April 1st 2023 12PM UTC...
fd.to_datetime('1 hour ago') # 2023-04-01 11:00:00+00:00
fd.to_datetime('last week') # 2023-03-20 12:00:00+00:00
fd.to_datetime('-1 week') # 2023-03-25 12:00:00+00:00
fd.to_datetime('last week midnight') # 2023-03-20 00:00:00+00:00
fd.to_datetime('-1d 2h 5min 10s') # 2023-03-31 09:54:50+00:00
fd.to_datetime('tomorrow') # 2023-04-02 00:00:00+00:00
fd.to_datetime('prev Monday') # 2023-03-27 00:00:00+00:00
fd.to_datetime('last day of this month') # 2023-04-30 00:00:00+00:00
# Anything invalid raises a ValueError
fd.to_datetime('next Summer')
# ValueError: Unable to convert "next Summer" into datetime
Time duration
Duration seconds
import fuzzydate as fd
fd.to_seconds('1h 4min') # 3840.0
fd.to_seconds('+2 days') # 172800.0
fd.to_seconds('-1 hour') # -3600.0
fd.to_seconds('1 week') # 604800.0
# Anything other than an exact length of time raises a ValueError
fd.to_seconds('last week')
# ValueError: Unable to convert "last week" into seconds
# Because years and months have varying amount of seconds, using
# them raises a ValueError
fd.to_seconds('1m 2w 30min')
# ValueError: Converting months into seconds is not supported
Duration string
import fuzzydate as fd
fd.to_duration(3840.0) # 1hr 4min
fd.to_duration(3840.0, units='long') # 1 hour 4 minutes
fd.to_duration(3840.0, units='short') # 1h 4min
fd.to_duration(3840.0, max'min', min='min') # 64min
Localization
import fuzzydate as fd
fd.config.add_tokens({
'måndag': fd.token.WDAY_MON,
'dagar': fd.token.LONG_UNIT_DAY,
})
fd.config.add_patterns({
'nästa [wday]': fd.pattern.NEXT_WDAY,
})
assert fd.to_date('next Monday') == fd.to_date('nästa Måndag')
assert fd.to_date('+5 days') == fd.to_date('+5 dagar')
assert fd.to_seconds('+5 days') == fd.to_seconds('+5 dagar')
fd.config.units = {
fd.unit.DAY: 'dag',
fd.unit.DAYS: 'dagar',
}
assert fd.to_duration(86400.0) == '1 dag'
Requirements
- Python >= 3.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
- Day and month
April 1st
,April 1
,1 April
- Datetime formats
2023-04-01 12:00
,2023-04-01 12:00:00
- Time of day
2pm
,2:00 pm
Methods
Conversion
fuzzydate.to_date(
source: str,
today: datetime.date = None,
weekday_start_mon: bool = True) -> datetime.date
fuzzydate.to_datetime(
source: str,
now: datetime.datetime = None,
weekday_start_mon: bool = True) -> datetime.datetime
fuzzydate.to_duration(
seconds: float,
units: str = None,
max: str = 'w',
min: str = 's') -> str
fuzzydate.to_seconds(
source: str) -> float
Configuration
# Read-only
fuzzydate.config.patterns: dict[str, str]
fuzzydate.config.tokens: dict[str, int]
# Read-write
fuzzydate.config.units: dict[str, str]
fuzzydate.config.units_long: dict[str, str]
fuzzydate.config.units_short: dict[str, str]
fuzzydate.config.add_patterns(
tokens: dict[str, str]) -> None
fuzzydate.config.add_tokens(
tokens: dict[str, int]) -> None
Background
This library was born out of the need to accept various user inputs for date range start and end times, to convert user time tracking entries into exact durations etc. All very much alike to what timelib does.
Other implementations are available, but I did find one that would have worked for me - usually they were missing support for some key wording I needed, or handled user vagueness and timezones in a different way.
Also, I kinda wanted to learn Rust via some example project as well.
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file fuzzy_date-0.4.0.tar.gz
.
File metadata
- Download URL: fuzzy_date-0.4.0.tar.gz
- Upload date:
- Size: 29.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49061886f5b8c51b15e77185ad432c8c67bb3384a286f86a01087a187c6fb108 |
|
MD5 | 8fa39c2846acc9781dc88354d6539642 |
|
BLAKE2b-256 | 324e0d3460202363b83cfb71442b107568b3860d9449d4d7076aed5489b27b77 |
File details
Details for the file fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 525.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32016bbb0bc6c3050860a399a9a283db0bfa0f3b0c9582954dbef21bf3fbfbbf |
|
MD5 | e89b2313736004524a3d3467e5dee42f |
|
BLAKE2b-256 | e738c5f759ebfeb2296301b6a8a64ab3295026200c22dc2454ed93edc5781603 |
File details
Details for the file fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 548.8 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb3016e3ae04c21ace22dd05d1be62b85de91d5141ae822c319fc01d4a6a9dc2 |
|
MD5 | 3eac3b3a5e532268f494b446b8b12817 |
|
BLAKE2b-256 | d81a50244dec454052c8716f6289fe3e2c5c0712ded5a4715594a58fc4b5ecf1 |
File details
Details for the file fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 622.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a074f062d2002214472f43aad25422d4b8ee1913f5869252d671fb50586a9e8 |
|
MD5 | 81d8893bb1dcdc97d39d55770933ab1d |
|
BLAKE2b-256 | 0e50ea9332ff62730090b025d325dc7fdbf1be1071c1be66b659b8b1e1ced3f1 |
File details
Details for the file fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 544.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85d8147aac753afb03be5b07e617459eef389898e842364fabe196304e5113e6 |
|
MD5 | b689073f1275093c261557a4bae83601 |
|
BLAKE2b-256 | eb9c68bdfc27681667401d1692fd7e012e1e4be56b77b735db756c130485034c |
File details
Details for the file fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 362.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a16440e3eacabc14462fab31feec0290f2b2cdf10a2b22c9234cf5357ba7bbde |
|
MD5 | 93179baadf53cd05bdfe12cfd4e64504 |
|
BLAKE2b-256 | 508f5ffdbb492c711e7419d43fbe1f3730243c4248e19c4d6ab0499d38252265 |
File details
Details for the file fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 415.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0237c4eb1d1a8a6fb12a2e04dbaa0e6fb79bd9860de42292909a96b18d18f790 |
|
MD5 | 55a77deac6957d9cdffdc9a39b424346 |
|
BLAKE2b-256 | 5cd2aadbcd9e4a365c85b981b1bf99cdb9385f297805134aa0af5095936f00a9 |
File details
Details for the file fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 402.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cc6aac3f1913fb22326a75072c62977dc5605544fd3e724d72c2a8acf80bdfe |
|
MD5 | 9f955ac372bee5ce70ef93ebc086aa50 |
|
BLAKE2b-256 | ab5984209b37598aac02f7ca376ced347cfae76758a0f16cb5d5130764c3e4d9 |
File details
Details for the file fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 365.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c29380cfe3127ae237ee3848a198397f4c930e1c06c48f4be5664bbf1ee80ce5 |
|
MD5 | b207233ec82c8ff04491cb730c0cc830 |
|
BLAKE2b-256 | 993c1f47c61405373b29d47b3afd4af9eac4524d58720f750f80f7b22e43f060 |
File details
Details for the file fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 360.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1a3de0e790900fb927c9f1bd1897328e8518c22057644d5e8f0af7cef3a9591 |
|
MD5 | ab216d36ac6daba800d03acfa0e0e84f |
|
BLAKE2b-256 | 713078528fcc7a6473ae92734132224eae9d6a330c597a320226f063d8f0b9af |
File details
Details for the file fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 384.7 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c61ae96cdf3556a1ffd9e908e56ec1f3c1bdcd44064e86663453dd37c0ec21e |
|
MD5 | 5bff41619142aeac514435371742ee4d |
|
BLAKE2b-256 | f6c9ff766e5833d80bd0422709b0da823ca2889144b1233355a5b0d99602c103 |
File details
Details for the file fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 526.1 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb02d77781e3e80b67f0af1d6baa220f8827a2c7a2b166be3f94bf01cedb5e7c |
|
MD5 | e8b860f3659a3b5532b9aa097614a366 |
|
BLAKE2b-256 | 5f5488f7275e40f5ea7a096ac5c36ac6629ca3e886004905e9f04f9a3b74d6f1 |
File details
Details for the file fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 548.2 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ebb9f1f9583490a964e96b065315ddca4ba90781efbf1b2c39b6a38f7d494623 |
|
MD5 | dd4a9f0fd08c5994ef0788e321837bd4 |
|
BLAKE2b-256 | cc8dea3b5406a5816cf5e3cea9031e770eabecff1d80c7ec144531d20367be59 |
File details
Details for the file fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 622.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d4bd069ade09be35fd1a88eed587c1bd38a8faf1b9c078e7b7594338b5bf4d1 |
|
MD5 | 4438e975d0f950bfbe17240aa72e61a9 |
|
BLAKE2b-256 | 6f8772f753e9cae0f6f829ee92050a0ecd5812b16930776094a3070fecd316bf |
File details
Details for the file fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 545.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f98684ad49015303958e553cb566b764595cbdd31c8014d73fce6d7dffa1637 |
|
MD5 | 3e52f65580f1b1c2ed41ee6374427b1e |
|
BLAKE2b-256 | 137e73188554ae0536504136e8f06c8731f98f82d365df45f3b7371c379caa59 |
File details
Details for the file fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 415.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17059816083ea1a1f5e37d542cbf2bfd06226a2565eb8b28161ebce16190412d |
|
MD5 | 73835c48b737c3a36cb929892dadd3b1 |
|
BLAKE2b-256 | 07abf14e98b71f33668988e36b666afd16e762033c43fd9416b7d982d4644d62 |
File details
Details for the file fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 403.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6310d85bb3f523905e97fc3508c006f9ea46465a08835bdb52434b40a4b0a98a |
|
MD5 | b0a85dc247ba138c0c68ff98d24240ca |
|
BLAKE2b-256 | d4a9ee65a892a4e6c8c9522be0c84d11aabbd91bcfebe09445bb0cd4e51ecbdd |
File details
Details for the file fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 365.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 963e986e19fa05eda8d3826305db797a3e481ea128f83e53202bbd84d9602571 |
|
MD5 | c91dba0e22d71a3a738e9a2c84e4fb8c |
|
BLAKE2b-256 | fdee12b72c329a95cac621fc1878cdce51d3eed1137017cea753ae988a318eaa |
File details
Details for the file fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 359.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04ce676abf8764640d7e096d4e1bd33fb825a79b8e5cf585aaaabdbfdc536c6f |
|
MD5 | a951a080032f16cf8ec5a56284b26e28 |
|
BLAKE2b-256 | c7185b0aa65d858d1b05094d9229bd00b1a30337c047995e0df3b19b195d7332 |
File details
Details for the file fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 526.8 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a985cb51549aeaebf00d0bc3eefdf5d5b2dafea21fb8954531c5d2bfa7b5c7a4 |
|
MD5 | 01b6713500a5a156acdd9d4631691370 |
|
BLAKE2b-256 | f4a55a2da05ef7e883ce815f3648c4261a372e5625c5630eb0cd51f25b0aba81 |
File details
Details for the file fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 549.3 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9903539758fd06066edbb9bf8adf166bd1de5e9e6ff2f834c0a64afa80764ece |
|
MD5 | 7f6c4adfc38a010eac43ef8c0f3ee07b |
|
BLAKE2b-256 | 7a96fcaf0764c8ae5d202fe8df1c476189e9dc63f752321897ba6b85dccb7426 |
File details
Details for the file fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 622.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c349c9618cd0a6e5da7f534cb42b1c231149ecb80d25cef79ffd872034df78a0 |
|
MD5 | a399299f01578d2d16b0976bd905320b |
|
BLAKE2b-256 | 759c107e80eb89053bee797019d494754c181e8daeb3e69cc2b0d00344aa5b38 |
File details
Details for the file fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 545.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1aa9f9346de5cf00bab89bc3a97b01130fb3c0ca3adb834e62d3b63aa3b8744 |
|
MD5 | 8b75d7c7479c428d6d1369533649c0ff |
|
BLAKE2b-256 | bf1c181aefb3f7bdcee6c9cd6bc8650a7225c4de132548ddbbaa0d7443262c40 |
File details
Details for the file fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 415.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c867716ce49c97f5bd3e65f4e0c2ecc4009ed27d88edc9095bfe25346823b150 |
|
MD5 | 334ea5fdb67219ea57cd7bcabe2ec8ec |
|
BLAKE2b-256 | 9855f069da8330eba7e0e71d37ce6de489d7c4390119c858c640be3c2e8d4729 |
File details
Details for the file fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 403.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37c6bda3aede8b4a94708ff251a425bdc14992994e76af1d3db7fbc391a005aa |
|
MD5 | c9dad2a0f688c41213b74c51e2502fd3 |
|
BLAKE2b-256 | 87554a4dfa0674e5cb156089f59a1c267dff41e6fd4388366f171da73ce5715e |
File details
Details for the file fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 366.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 453cd0fdff7f068463544866bc5f074f4805ee73ec432420b709a943dbdc6538 |
|
MD5 | 2cbb6f32f34d234ed3b1b108735b38a1 |
|
BLAKE2b-256 | 54aac7a8636b2051cb754a7c3f29978639cfee33ab8abae0ac7dd2d16bdf80d7 |
File details
Details for the file fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 360.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50a9f92028f1382d15a29f27b37e56d2ec888d8f986bfbdd2a4b83fa53816daf |
|
MD5 | 4b1090c3d8bd8629a18bf90d1ceb0b41 |
|
BLAKE2b-256 | 436ee36862643b6a1d43a1aad790c59c90d8a0602459d21e8e72a05b999623f0 |
File details
Details for the file fuzzy_date-0.4.0-cp312-none-win_amd64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-none-win_amd64.whl
- Upload date:
- Size: 210.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 347eedd721767c79ff081a11745f6fa3fb28409c391e938515878189fe1b1682 |
|
MD5 | ddabaeb5d5bdfd63009a77417a792118 |
|
BLAKE2b-256 | df559c6e317d4114d49da567ec596057bafc8f4789ceb1f93f06902374b52d3e |
File details
Details for the file fuzzy_date-0.4.0-cp312-none-win32.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-none-win32.whl
- Upload date:
- Size: 198.0 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59279d750e7687d4672be9313f6de7cfffa5852c467c78605c2a2dfc305db8e2 |
|
MD5 | 8aa561bcd7bee266149e73a129dc188d |
|
BLAKE2b-256 | 338e656462f6a9713a259888cbeea2d60a3708eb917a93fe9023157aba9729d7 |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 523.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 786f6c4f8acec7698aa74112b0bebdc7ea23d38b8c10097d312c66374c12c300 |
|
MD5 | 4a93c6ecf2989ad468f01199ca24f821 |
|
BLAKE2b-256 | f2b98bce8c76cf8ec53a0b39933d8ec619061784af53920949d5c818a4210f86 |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 545.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b475ae9b137909b25cf4ffe6fda73b50b8158f184009771cd39bfd082e5c2fbd |
|
MD5 | 1d0ec15061a20717f14bbc709dbc2bc4 |
|
BLAKE2b-256 | 5907d75b83d931eca470d79f3fe9eb6bfabbd070ee9d7167f1fb2f501f24aee0 |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 622.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f63bc630d41ae3e28eb7fe2bce99c434e1369409ce87071a0247a2aa30719cd3 |
|
MD5 | dae3275d826de937890195d6fdec37d4 |
|
BLAKE2b-256 | 94971ab15d051458808eb922d975e1128efbf1b9d17cbec50ad9e6daf59ec195 |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 541.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f21ad823337afae3bfdc3a13206acc83578050ce17d5c23fd178bcfc9a260247 |
|
MD5 | 08d34656f5e00b810145146d485bf8e5 |
|
BLAKE2b-256 | 97e06a693b1aee1a5bff1a2f3ee7ad17e18d213721b408a4013c373fa8573d28 |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 358.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d279725158c039c10babf1524f3af921036ce60fcec958979ffbd1af1d047847 |
|
MD5 | 90f5de0774ea996536cdac69931e252e |
|
BLAKE2b-256 | 8d001418790f8aed603e65021662f4200580214839f785eb4a9df517bec71b8e |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 410.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec78489decf4998bf9bb6ebdbf24b97923416c92ee5d2e488f3c27253b1a2107 |
|
MD5 | dd3ddbc33015c046b7fa572f5762eeff |
|
BLAKE2b-256 | bb665e9fd51acc5ae9c2731a4bc924785d776d838731fb133c2082713d9ef01a |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 401.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfeaec857cb58b33c703c70ebfc6983c64fc46453aa7ea19cbda921b7c3c9b48 |
|
MD5 | b6520c1c1948e1eac1a9aaf59a7489a6 |
|
BLAKE2b-256 | f1d02408df15aa9dbde951de7cefedc8063b711266bc8921b2eae444efda26b7 |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 362.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a3693ab46301d5cbde3dfbd44f32747592efba4b547136fe812ee0eb1a53f6e |
|
MD5 | 214382fd3798e57cd80a002650d5858d |
|
BLAKE2b-256 | 043fe2089b3468ae56b7745b376da4d0f81ac5924ca85339416ebacfbb269838 |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 356.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b80c7fb268f527e0f82da3379600b420c169bda7c76e5755b50abc10a245ac09 |
|
MD5 | 8ed143d11df1e6e86a9b33c6d5cff300 |
|
BLAKE2b-256 | 66479fafa97b31ff4f7750d36575a7948c85f50a01510d322c3c8bcd476441a6 |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 382.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3a6bdbfcd566192efc2a9823aa2f6992e7e94448581f98d07d791544870e6fe |
|
MD5 | eaa915ade83fabfe8f306eb666bc3b41 |
|
BLAKE2b-256 | 7f5245f07cf8218c0d40ffbce4681d2e66fc2bf06ab5d5fd4c3d3b4dbe06f256 |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 311.1 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49aa1376c30b21e8f7c37ab73bc2db962ad0a39266d3ade4d8d3c1bc3347fabe |
|
MD5 | 1a04c4885276c6704f13cad8a80f3dcd |
|
BLAKE2b-256 | 420a0dc8b9777067ffe432a97f5521ac13a591d8ef200a8fd942a625993406fe |
File details
Details for the file fuzzy_date-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 318.0 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37832d76de6f447a27697e0cb71633a28c9670ef768b54b0f96c64d1b8788ea3 |
|
MD5 | d38e1d7ca6e604d4ef7e6e457f1f9bca |
|
BLAKE2b-256 | 3d61e1cfe2119740d06e8c185ebfd342db17eebbbbe514dc9762b0ce2cd16973 |
File details
Details for the file fuzzy_date-0.4.0-cp311-none-win_amd64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-none-win_amd64.whl
- Upload date:
- Size: 210.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 336f1c772d58c9485221b1d2b7ba7b5b5861e8eaae43ff6caff08036cca244df |
|
MD5 | ba695d6933fb87394347f370a27cc2f4 |
|
BLAKE2b-256 | 96beefd646dfbb7543bfc2a8b7a20710ffb50993c8a3d3224e6e0adfdbff4c72 |
File details
Details for the file fuzzy_date-0.4.0-cp311-none-win32.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-none-win32.whl
- Upload date:
- Size: 197.7 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e56df6f42238b8a604df37dd85aca007a7f53a9a08c3b4a8d31bc8671ca4c86 |
|
MD5 | 1a7d88bcc10b9aa5c1146fc73977b0af |
|
BLAKE2b-256 | 79f3a3a6710686b3c1c15846619ddc2d070b3361d62ef8f6cbdaa1e7a24793f4 |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 523.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fd8eb07519b360cb042597e061b2f2b98deb7a1d05e5203cb360fa93247e903 |
|
MD5 | 07347551bfa7b92f32d4b197dd859025 |
|
BLAKE2b-256 | 96b88040fa43befe5a56428f1371d8305652bc75de92b1607bea6bc0e2d7772d |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 545.7 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0c1f04052581534b3d882e2f67ea52b54a912bcb3a0ae1d5308e93d915d98c3 |
|
MD5 | 7f5e4b5f48b27837492644a59aae1bbe |
|
BLAKE2b-256 | 367813ea7de837057a88988c3f02789cfc066f956927867b00a693a34b9951d0 |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 621.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a12121ce5c02c85d37577f47e3db678e2952627cd879960e1d0557c6d2f7ece6 |
|
MD5 | 27594eec713e654de52d239102b5e5fb |
|
BLAKE2b-256 | 387610b678e6c1435b24b4bc63cec4118039453e499aeef0c5255babd90acdef |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 541.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 399caf580a8988f1cfe856ab7271dbbd5723eba13080c208de1394b90fbd492b |
|
MD5 | c95e656d60ff439239835a3d6d4c94b2 |
|
BLAKE2b-256 | 8c0874f1352ebd0269852f2aaad173f645b42fad58780e630ff67e4f6484d443 |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 359.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2db4416f63e6714b36248ccf14e8a59c41bbd1db4003d8969748669c60962d16 |
|
MD5 | f0bb52cc1443389664f183aa221c80c9 |
|
BLAKE2b-256 | ef3d418c3b6fb8a3fa240dd85bba908348b2c8a29fd1a6e440e0b9c1fb733477 |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 413.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 483150b9d66de86362ac626ec5b8ad5ab936ae8ffddbc60a3e32a383b964ad6c |
|
MD5 | 0c81c7cac16317ced8e2f154545e6faf |
|
BLAKE2b-256 | b6d56fa12ab9c93de024e978f06b1ddc4da898cabbce8706eb84690784ead68b |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 400.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df7c3c7b83473fc03769d95ba7cdfd992e4a8912c8fba9151899f295086b444a |
|
MD5 | 2e1a2a562325143c9fb29d6674e04fe0 |
|
BLAKE2b-256 | 0a57bdbf0c34255472eebe82483d4d26c468d5cfcfee3efa0b40548b8a7f62f6 |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 362.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d8891833a467efb9218f0aa165033f7439ffa790612cd3fadc4e75960980b10 |
|
MD5 | 37aa01f208e640ab7c11c600ef0f2622 |
|
BLAKE2b-256 | c90e1bcd9d6b225deeece4e66887c20b1d1034a573077a7a979249c5e8246298 |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 356.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f30aec95122d8ab5a00eefc60e6ccca8345fd92dd4b95f275efb324d221014ef |
|
MD5 | 8716b104d36d00f11444e2196deb3d78 |
|
BLAKE2b-256 | 8e91549be3bac8ca313670ac37c194b02d5cc019b2d4d64e6561130704010b54 |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 382.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f40083d3572cacd72d4cc67fc9b67da5d2fb72ff8c414ff8d002cbe1ec7a37cd |
|
MD5 | 4b47fafe4dbc286d3c6ffaf18e2ead51 |
|
BLAKE2b-256 | 198211a3c4ba7b732501c0bde1546d1138997b03e2f0dcc7f553947f170a6300 |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 312.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45442d413fa5a8255e64b90a493fea04cb8682793c0ced43505912661e73adfc |
|
MD5 | 06c5f38d9d138d3bf2379b89126206b1 |
|
BLAKE2b-256 | 4752f8fefb168d391cf562b5fe0486bb32293004d980b26e8b24b93a0df302a4 |
File details
Details for the file fuzzy_date-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 319.2 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a494844d4d4af7bbfab2d9467de89c7acfb23e8d4fcb37020653cd3bc9190c2c |
|
MD5 | f6439d8fc807ce42f077b62c088b71a0 |
|
BLAKE2b-256 | 5540cab539cca980c54d24dff32b8fbd675ef7df3e0a47b2303734ada3c484f5 |
File details
Details for the file fuzzy_date-0.4.0-cp310-none-win_amd64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-none-win_amd64.whl
- Upload date:
- Size: 211.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6a8736bb778870bf2e2b480171050508946b5b640de5fea0871eb46d7267620 |
|
MD5 | 464ef456ec32dbd05eb99ba046fdf620 |
|
BLAKE2b-256 | 6408a6dc44c7672e7fc0e417a3577ea45ac89b29d556dba4c855cfdec83d6822 |
File details
Details for the file fuzzy_date-0.4.0-cp310-none-win32.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-none-win32.whl
- Upload date:
- Size: 198.0 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e0c2c866cddbb7982cd91e62f62c8ac3196f5ab0d098b0eec88b9e66fe815aa |
|
MD5 | 0e3f06f3a80e727ba1223b212964301d |
|
BLAKE2b-256 | 93d2def19348407b77b9426be388a28392e92e4dc085bd52dfe2d1e3438ff7f5 |
File details
Details for the file fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 523.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af68424a748b337ecd3348fc7d91b4e87b1a3d4f624b59ea4c299abf3ba842a5 |
|
MD5 | 27ac77d6ecbc03d0c5036ea9633ea4f4 |
|
BLAKE2b-256 | 0fb348ba89f30aabfe8321a5fdead53c61e3a22666fe8edd8ae4f99b7151b6d5 |
File details
Details for the file fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 546.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2db0376f2f803de03c652c1f7b0ceaf38afb050627ce63527f9b43f8ab24d2a2 |
|
MD5 | 53d86a4424fc89c0826445e4b5b03d46 |
|
BLAKE2b-256 | 3ccf0131022dfa38aa64db9f346f2e2bc53be0298791da803c0aca13dbe4cd0c |
File details
Details for the file fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 619.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94af277872b52575721638f004730e2114cd26ea47af74fa45fafa2791133b63 |
|
MD5 | 93462c715bed66cd65b69ee21172f65f |
|
BLAKE2b-256 | 13bc3943a36ce1cde27040b8204cd66d47d9f50a308f28ceb2834ef63a7df953 |
File details
Details for the file fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 541.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29f952f8bf415d9f441cadf510409e189e3a400966e62be68b9ca7aebc87116e |
|
MD5 | 1001c256fc1c0b3aec9cd97dc3d0a69b |
|
BLAKE2b-256 | a7c2d19498daeb48f976c96d0457a3f42cd78649af83aac01aaa90bbffd665ec |
File details
Details for the file fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 360.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef5c1beb7666d742072a2e4888b13e146d368da461329ca876154a002edc4423 |
|
MD5 | c5769c840da018bbafefa0ad61ed23d1 |
|
BLAKE2b-256 | a332df42ebe412ee908728257a0a382aff4c4eb7d493fc3a90fc18b311970feb |
File details
Details for the file fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 413.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4befb794e70e28350cb6c249b54042bf13f71cd4df56f1b000f330d1184926fa |
|
MD5 | 0ab31af9b6342019ab0d9bb61b2c38d5 |
|
BLAKE2b-256 | 2a7eb80750eae4275a1a3e040f6ea9aae1350e152f32f2077140b23cad575d3f |
File details
Details for the file fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 400.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34ba9af2cb5c8cd3d01223be2ffc71fa519ae143c14ae477d13f52aaace0c257 |
|
MD5 | b1344920fb3c099025b3cad1ce9d27f8 |
|
BLAKE2b-256 | 2f0624c315a6bda0d1551f026002dd3643822225ba1f29698f7d1771582fed14 |
File details
Details for the file fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 362.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ff67b922ea93c3b0453b6c13075395c5aaf774e620e9f3fb16e4f2a9a847ca6 |
|
MD5 | 4ce1dced118e4bc20ccd696cca6212bf |
|
BLAKE2b-256 | 58e850e47e6a73a6512e7d1fa74a0875f860d61286927226f33d4ec720a069f2 |
File details
Details for the file fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 357.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 531f15de89678a2fcde602a46826e90bdf47a9b6c8f274ab1cb011b15c5bd8ad |
|
MD5 | df394be937048c71695436eed94906b3 |
|
BLAKE2b-256 | 7eb96bcae7ae8b42acb17818e1dbd8a15d6dc310a5298406891af943ffe3d5b0 |
File details
Details for the file fuzzy_date-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 382.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbbecf604dc280c29e8383b5f8734bd26ec19a1190463d2bb3488141ff826a07 |
|
MD5 | 51e3cfe99a01befae9dc5662e1cca79d |
|
BLAKE2b-256 | 985e7f6fbbb52b2e843aabf43ae426612ff7cd27d277f6968eb9299b83cf5bdd |
File details
Details for the file fuzzy_date-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 312.8 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 026c232df7acca3766e4aed1e21cd87d8debee016782e3a089ac4cf5d6fc40a9 |
|
MD5 | 00b8ed264287f921df27091a603bf817 |
|
BLAKE2b-256 | f87eb318bd256b7736f2582c2b2ccbdaaba5043dcb4a2d7322743e26c96ca926 |
File details
Details for the file fuzzy_date-0.4.0-cp39-none-win_amd64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-none-win_amd64.whl
- Upload date:
- Size: 211.0 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f3c2f8dee4e244a15a4dc322e7e6b9a95861b1ebf521423128aa5b910194f4d |
|
MD5 | 4f2637437ab0bf62b5b3a92f0dc9fd6a |
|
BLAKE2b-256 | 8bda92bfa5116b11666b7c1467e5c689b0ff3f84b721b9fe387f5792ce4770e9 |
File details
Details for the file fuzzy_date-0.4.0-cp39-none-win32.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-none-win32.whl
- Upload date:
- Size: 198.7 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf1c13b1c02ffbcd55e097d16c7268dbba70f5f30c1257656fa33281e07d82f1 |
|
MD5 | f1544d9bdb821dfc5a69944c1fd37913 |
|
BLAKE2b-256 | d229f138cd1cf26cccd97b53c002397eae8258b9e964cb0eabbad51a153a00a6 |
File details
Details for the file fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 524.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a553a74903784f37e764237ed2ad40da9f0c4474ba41f94bff0aab19b6a7cf3a |
|
MD5 | 2ad27eff88a12fa5fd836968e8403960 |
|
BLAKE2b-256 | 089532f806f2a209e6090412322adf9bf8f58b0a370030b40054ec0789d01b41 |
File details
Details for the file fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 546.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30ef2895372f9a96f351d1a108e790b07b1379fb9cd440869293b2ee28b37031 |
|
MD5 | 0ff302b82b66ad14f7b6b42edae491b9 |
|
BLAKE2b-256 | b81f8aa2ffdfafccd10d70a6f37aeed4f05df76e56e34c608096f75af84611e2 |
File details
Details for the file fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 620.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2657c7c42f998c6bc8884037aa10be0fae042b9531fcb02252d4b6be4ceb05d |
|
MD5 | ec6069b807499040b263f20810fa6e48 |
|
BLAKE2b-256 | 8c3e8e99c8361f6ade89100b2bc5f3098845f09b1f9d8055ffc336199f6d6f51 |
File details
Details for the file fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 542.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57418c97b20cb4620543bfdf019404c8fad117635ea3ee1cc265bbd182a74861 |
|
MD5 | ff9adf9bd0b13b8b68d788b24d07407e |
|
BLAKE2b-256 | 2b47716eba66baa030cedf93e1f2dfc9fa85271aa87db9672bce4ba9594ca5b2 |
File details
Details for the file fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 359.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6dba443a877b251c8789574e7609eca963cbcc0eb2ae288e9c718eb78ea2ca1d |
|
MD5 | bd6356e2a2a85dd7ff3d9ad9bb88bba4 |
|
BLAKE2b-256 | a949a7eb61cbc21cd53ee8ed59e86a77eeb15635d941a3bfb40cffeca12f6b65 |
File details
Details for the file fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 413.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62ab803e971f0b3e2f2f1e3619a99f49dda62ad6948faa77c53a2e79c180388e |
|
MD5 | 2278550bb669015a8b8b74026263e37d |
|
BLAKE2b-256 | 482332ee5df7379789ac0bed9d590e017e6909fc96fb72e214e3fa7948cee118 |
File details
Details for the file fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 401.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f69c6e4f9812341f4b07055a637ac453f61cd1330ec7fcc85773b271026fb8f9 |
|
MD5 | e15b180f20d20b8ce357d590485e9486 |
|
BLAKE2b-256 | eeec801d816f536995965cbaf0041979b81e5f41a45c519cf9a6fcf74336ce14 |
File details
Details for the file fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 362.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7363f0e5a8cbc185bf97a82a32e0d141d589a1428af071a3a96d2ee6c1bcf72 |
|
MD5 | 30ce722f2963c12a520f9386bc311679 |
|
BLAKE2b-256 | 960748a5301278992edc4a28e51cd67b119b412e2244c802e3075ce90f31cef3 |
File details
Details for the file fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 357.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7329b435cabe64297a2aa71c509ede1103047293a229a0508ed1ccaa71167263 |
|
MD5 | f772479f625651ec282cab1cd775f8d0 |
|
BLAKE2b-256 | dca19923bc2f47f8e31e3c75f146f790942b27a92dc696ac92b01848331548f0 |
File details
Details for the file fuzzy_date-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 383.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be8da401b0a37f8453411f1a21b93af89d32d6ad43a471dffdcb51ae21f03b60 |
|
MD5 | b58f37daa3edc31a267c7a75fb65d777 |
|
BLAKE2b-256 | 39fdfaa2d4b8814c7a243e52f7661f70140bff64dd9ae91805510870890f051a |
File details
Details for the file fuzzy_date-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 313.4 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b23bf8e01ffae503dbdd5f6c41876e8851adac1fe0fa26274e41dd0cba14406 |
|
MD5 | 70589502e8117cdc9458956cfdf1bb81 |
|
BLAKE2b-256 | d9d16c7dda8839590dff47c8cfa7c54e8092f362ede7a80142ec8ade530ae64b |
File details
Details for the file fuzzy_date-0.4.0-cp38-none-win_amd64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-none-win_amd64.whl
- Upload date:
- Size: 211.2 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58e25f0f272188f51af5813d9b946b1e5cf0fae29bd2c6509771ca81f70eb7a4 |
|
MD5 | c5188e53e4048f241cedb36f541885e0 |
|
BLAKE2b-256 | 2ef374331c918e7adbc86be7b9dd15e44d589ab8b1c6d4a96d618735ad864ade |
File details
Details for the file fuzzy_date-0.4.0-cp38-none-win32.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-none-win32.whl
- Upload date:
- Size: 198.8 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a37fe770ad7e4639e41e68839cb29fcb2c6e9d992545c8f770861dc244977566 |
|
MD5 | 500bb216eedf8d61b53cb115b59b7e92 |
|
BLAKE2b-256 | 2be88ff1da10911b48c12ba551b2f02a07143e992623be84e3e3718db09201f5 |
File details
Details for the file fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 525.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4805e0aaa02cfed5d572c3b60a05e25e1a1ee8b8d61e31957ab7df4283355dfa |
|
MD5 | 82ab8b102717ce66c4c94fad9e36e974 |
|
BLAKE2b-256 | 12c99781019181c34a511c758214c2771ab5372b69075b4c74367ff6e96ce11e |
File details
Details for the file fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 547.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 048edaae13a9f0bc246617e0e997ba015d70413e4975b013fb3b6bb845656671 |
|
MD5 | b0c76b7fafd0e76047e9e34044103021 |
|
BLAKE2b-256 | 3ecfff59c0635e65656bc87b51e85fc167d189c69247c5e23c446ae4324d0da4 |
File details
Details for the file fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 620.6 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47dd211659dabec779f151e4ce4b348b8289aa83c9bdd6c92717dd2e36fddd57 |
|
MD5 | 85e79c6ceaecfb81279b803cc7d70ee5 |
|
BLAKE2b-256 | 93c4d9b4c58d9b774d156b6cb7ae6f189e9cefca5301fab898afb035e3bd532b |
File details
Details for the file fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 543.2 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0608fb1751032689820b364ca1483635272fe8fc1d7b75401fe14d81e2305723 |
|
MD5 | 9f0e62e9f76d5b55502c9bb32d635cf5 |
|
BLAKE2b-256 | fcad492e915d6a44c2ec681362822ff8a0198b3d1b2accdb30837cdf07482c50 |
File details
Details for the file fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 360.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdaf86b7d1a89f87e22bd039b04ae6a139c5170c7caa147ed06891ddac27c86a |
|
MD5 | 93cc7cfdf49effc45899664459d95ac7 |
|
BLAKE2b-256 | c60af6c04b77a0c80098c906f77d37f4e324f807153ea8c92f0aaa4da3d0ef1b |
File details
Details for the file fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 413.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d9d9b10c6eccab96cf96ffecdd71a3d4a1522fce4268fbc72f0c8ed223903ba |
|
MD5 | c9f9030b52270ff49efab9469fa45906 |
|
BLAKE2b-256 | 0d72e876e9c817a15aa98bd73f83b9cb32571b635bb7bdfd4a017a1de23a3f18 |
File details
Details for the file fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 402.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ec805e2754c9e6b1f580c5dc19dacc7b8ab89dd70da9765ef49cdefe00ae5c4 |
|
MD5 | 506307eb2ec270927c34402d76b93a12 |
|
BLAKE2b-256 | 3089c3e9b3747eb392682fe94d19641ce240b5303497227890c9ac2c9e44d698 |
File details
Details for the file fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 363.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46b669b141217635d3c7334d28ad8f29e67580a36a72f3c22c009b4a4e83d40f |
|
MD5 | d0f587d64af37d9f1e99fd169b98ee1d |
|
BLAKE2b-256 | 953b554c258fc43b20ca6a8fc1c783290b9abdcc97b40b53f216a0d530d10e1f |
File details
Details for the file fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 358.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45ae4afff6b6b06124f980cc64758d0f166f999689f06601b3d7ddc538b55460 |
|
MD5 | c28cd30c71d64f43d54dbe807b4c7255 |
|
BLAKE2b-256 | 425f74b0a2612f136e9ea2c12381f568f804d9c7324f2f6333b099029f6831d0 |
File details
Details for the file fuzzy_date-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: fuzzy_date-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 383.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6da6cacb7f78f65fe244b664528c9da298dffd857e9db763449e6a1f008908e3 |
|
MD5 | e57a1b0757cc28c3d587ad46712db346 |
|
BLAKE2b-256 | faca545f566eb875ddc75580ff1ddc340566ecc1d0b6c7d69e5d153f99bc9676 |