Name | fuzzy-date JSON |
Version |
0.5.1
JSON |
| download |
home_page | None |
Summary | Convert various time strings into datetime objects |
upload_time | 2024-12-13 12:31:14 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
keywords |
date
parser
relative
time
strtotime
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# fuzzy-date
[![PyPI version shields.io](https://img.shields.io/pypi/v/fuzzy-date.svg?color=blue)](https://pypi.python.org/pypi/fuzzy-date/)
[![PyPI download month](https://img.shields.io/pypi/dm/fuzzy-date.svg?color=blue)](https://pypistats.org/packages/fuzzy-date)
Python module to convert various time strings into datetime objects, written in Rust.
## Date conversion
```python
import fuzzydate as fd
# If current time is April 1st 2023 12PM UTC...
fd.to_datetime('1 hour ago') # 2023-04-01 11:00:00+00:00
fd.to_datetime('last week') # 2023-03-20 12:00:00+00:00
fd.to_datetime('past 2 weeks') # 2023-03-18 12:00:00+00:00
fd.to_datetime('-1 week') # 2023-03-25 12:00:00+00:00
fd.to_datetime('last week midnight') # 2023-03-20 00:00:00+00:00
fd.to_datetime('-1d 2h 5min 10s') # 2023-03-31 09:54:50+00:00
fd.to_datetime('tomorrow') # 2023-04-02 00:00:00+00:00
fd.to_datetime('prev Monday') # 2023-03-27 00:00:00+00:00
fd.to_datetime('prev June') # 2022-06-01 00:00:00+00:00
fd.to_datetime('last day of this month') # 2023-04-30 00:00:00+00:00
# Anything invalid raises a ValueError
fd.to_datetime('next Summer')
# ValueError: Unable to convert "next Summer" into datetime
```
## Time duration
### Duration seconds
```python
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
```python
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
```python
import fuzzydate as fd
fd.config.add_tokens({
'måndag': fd.token.WDAY_MON,
'dagar': fd.token.LONG_UNIT_DAY,
})
fd.config.add_patterns({
'nästa [wday]': fd.pattern.NEXT_WDAY,
})
assert fd.to_date('next Monday') == fd.to_date('nästa Måndag')
assert fd.to_date('+5 days') == fd.to_date('+5 dagar')
assert fd.to_seconds('+5 days') == fd.to_seconds('+5 dagar')
fd.config.units = {
fd.unit.DAY: 'dag',
fd.unit.DAYS: 'dagar',
}
assert fd.to_duration(86400.0) == '1 dag'
```
## Requirements
- Python >= 3.9
## Installation
```
pip install fuzzy-date
```
## Syntax support
### Special
- Date `now`, `today`, `tomorrow`, `yesterday`
- Time of day `midnight`
### Relative
- Adjustment `last`, `prev`, `past`, `this`, `next` or `+`, `-`
- Units `next week`, `next month`, `next year`
- Weekdays `next Mon`, `next Monday`
- Months `next Jan`, `next January`
- Numeric `(s)ec`, `min`, `(h)r`, `(d)ay`, `(w)eek`, `(m)onth`, `(y)ear`
- Ranges `last/first day of`
### Fixed
- Unix timestamp `@1680307200`
- 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`, `1st of April`
- Datetime formats `2023-04-01 12:00`, `2023-04-01 12:00:00`, `2023-04-01 12:00:00.410`
- Time of day `2pm`, `2:00 pm`
## Methods
### Conversion
```python
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
```python
# 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](https://github.com/derickr/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
Raw data
{
"_id": null,
"home_page": null,
"name": "fuzzy-date",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "date, parser, relative, time, strtotime",
"author": null,
"author_email": "Antti Launiainen <antti@antictools.com>",
"download_url": "https://files.pythonhosted.org/packages/04/91/444d95840147e5785631dfc24d2b569c3c3155e96ab7773570eed279df70/fuzzy_date-0.5.1.tar.gz",
"platform": null,
"description": "# fuzzy-date\n\n[![PyPI version shields.io](https://img.shields.io/pypi/v/fuzzy-date.svg?color=blue)](https://pypi.python.org/pypi/fuzzy-date/) \u200e\n[![PyPI download month](https://img.shields.io/pypi/dm/fuzzy-date.svg?color=blue)](https://pypistats.org/packages/fuzzy-date) \u200e\n\nPython module to convert various time strings into datetime objects, written in Rust.\n\n## Date conversion\n\n```python\nimport fuzzydate as fd\n\n# If current time is April 1st 2023 12PM UTC...\n\nfd.to_datetime('1 hour ago') # 2023-04-01 11:00:00+00:00\nfd.to_datetime('last week') # 2023-03-20 12:00:00+00:00\nfd.to_datetime('past 2 weeks') # 2023-03-18 12:00:00+00:00\nfd.to_datetime('-1 week') # 2023-03-25 12:00:00+00:00\nfd.to_datetime('last week midnight') # 2023-03-20 00:00:00+00:00\nfd.to_datetime('-1d 2h 5min 10s') # 2023-03-31 09:54:50+00:00\nfd.to_datetime('tomorrow') # 2023-04-02 00:00:00+00:00\nfd.to_datetime('prev Monday') # 2023-03-27 00:00:00+00:00\nfd.to_datetime('prev June') # 2022-06-01 00:00:00+00:00\nfd.to_datetime('last day of this month') # 2023-04-30 00:00:00+00:00\n\n# Anything invalid raises a ValueError\n\nfd.to_datetime('next Summer')\n# ValueError: Unable to convert \"next Summer\" into datetime\n```\n\n## Time duration\n\n### Duration seconds\n\n```python\nimport fuzzydate as fd\n\nfd.to_seconds('1h 4min') # 3840.0\nfd.to_seconds('+2 days') # 172800.0\nfd.to_seconds('-1 hour') # -3600.0\nfd.to_seconds('1 week') # 604800.0\n\n# Anything other than an exact length of time raises a ValueError\n\nfd.to_seconds('last week')\n# ValueError: Unable to convert \"last week\" into seconds\n\n# Because years and months have varying amount of seconds, using \n# them raises a ValueError\n\nfd.to_seconds('1m 2w 30min')\n# ValueError: Converting months into seconds is not supported\n```\n\n### Duration string\n\n```python\nimport fuzzydate as fd\n\nfd.to_duration(3840.0) # 1hr 4min\nfd.to_duration(3840.0, units='long') # 1 hour 4 minutes\nfd.to_duration(3840.0, units='short') # 1h 4min\nfd.to_duration(3840.0, max'min', min='min') # 64min\n```\n\n## Localization\n\n```python\nimport fuzzydate as fd\n\nfd.config.add_tokens({\n 'm\u00e5ndag': fd.token.WDAY_MON,\n 'dagar': fd.token.LONG_UNIT_DAY,\n})\n\nfd.config.add_patterns({\n 'n\u00e4sta [wday]': fd.pattern.NEXT_WDAY,\n})\n\nassert fd.to_date('next Monday') == fd.to_date('n\u00e4sta M\u00e5ndag')\nassert fd.to_date('+5 days') == fd.to_date('+5 dagar')\nassert fd.to_seconds('+5 days') == fd.to_seconds('+5 dagar')\n\nfd.config.units = {\n fd.unit.DAY: 'dag',\n fd.unit.DAYS: 'dagar',\n}\n\nassert fd.to_duration(86400.0) == '1 dag'\n```\n\n## Requirements\n\n- Python >= 3.9\n\n## Installation\n\n```\npip install fuzzy-date \n```\n\n## Syntax support\n\n### Special\n\n- Date `now`, `today`, `tomorrow`, `yesterday`\n- Time of day `midnight`\n\n### Relative\n\n- Adjustment `last`, `prev`, `past`, `this`, `next` or `+`, `-`\n- Units `next week`, `next month`, `next year`\n- Weekdays `next Mon`, `next Monday`\n- Months `next Jan`, `next January`\n- Numeric `(s)ec`, `min`, `(h)r`, `(d)ay`, `(w)eek`, `(m)onth`, `(y)ear`\n- Ranges `last/first day of`\n\n### Fixed\n\n- Unix timestamp `@1680307200`\n- Dates `2023-04-01`, `04/01/2023`, `01.04.2023`\n- Textual dates `April 1st 2023`, `April 1 2023`, `1 April 2023`\n- Day and month `April 1st`, `April 1`, `1 April`, `1st of April`\n- Datetime formats `2023-04-01 12:00`, `2023-04-01 12:00:00`, `2023-04-01 12:00:00.410`\n- Time of day `2pm`, `2:00 pm`\n\n## Methods\n\n### Conversion\n\n```python\nfuzzydate.to_date(\n source: str,\n today: datetime.date = None,\n weekday_start_mon: bool = True) -> datetime.date\n\nfuzzydate.to_datetime(\n source: str,\n now: datetime.datetime = None,\n weekday_start_mon: bool = True) -> datetime.datetime\n \nfuzzydate.to_duration(\n seconds: float, \n units: str = None, \n max: str = 'w', \n min: str = 's') -> str\n \nfuzzydate.to_seconds(\n source: str) -> float\n```\n\n### Configuration\n\n```python\n# Read-only\nfuzzydate.config.patterns: dict[str, str]\nfuzzydate.config.tokens: dict[str, int]\n\n# Read-write\nfuzzydate.config.units: dict[str, str]\nfuzzydate.config.units_long: dict[str, str]\nfuzzydate.config.units_short: dict[str, str]\n\nfuzzydate.config.add_patterns(\n tokens: dict[str, str]) -> None\n\nfuzzydate.config.add_tokens(\n tokens: dict[str, int]) -> None\n```\n\n## Background\n\nThis library was born out of the need to accept various user inputs for date range start and end\ntimes, to convert user time tracking entries into exact durations etc. All very much alike to what\n[timelib](https://github.com/derickr/timelib) does.\n\nOther implementations are available, but I did not find one that would have worked for me - usually\nthey were missing support for some key wording I needed, or handled user vagueness and timezones in\na different way.\n\nAlso, I kinda wanted to learn Rust via some example project as well.\n\n## License\n\nMIT\n\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Convert various time strings into datetime objects",
"version": "0.5.1",
"project_urls": {
"Homepage": "https://github.com/aldroid1/fuzzy-date",
"Issues": "https://github.com/aldroid1/fuzzy-date/issues",
"Repository": "https://github.com/aldroid1/fuzzy-date.git"
},
"split_keywords": [
"date",
" parser",
" relative",
" time",
" strtotime"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "97717c2dd8badb8195a31e5a35551b5f86a6b1b48d48f783a48ae03484bafb86",
"md5": "3809b194d47eb6576c157beea51561ba",
"sha256": "da57e33436319e8a0e63de25630028e2d3950dca53cc4c32d9a40ff387305983"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3809b194d47eb6576c157beea51561ba",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 363563,
"upload_time": "2024-12-13T12:28:04",
"upload_time_iso_8601": "2024-12-13T12:28:04.559519Z",
"url": "https://files.pythonhosted.org/packages/97/71/7c2dd8badb8195a31e5a35551b5f86a6b1b48d48f783a48ae03484bafb86/fuzzy_date-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "49d8968131e418a5f19b4d166717740eb6e2ff82796f3872de884ec89c76b8fe",
"md5": "0dd0374ffa5e63e4afe3a03eba557bbe",
"sha256": "7a8274607f77eb3fcd411ae59ac1fb3df0b3229297c5ddfbe0d0ecbf46cdf752"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "0dd0374ffa5e63e4afe3a03eba557bbe",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 371652,
"upload_time": "2024-12-13T12:28:30",
"upload_time_iso_8601": "2024-12-13T12:28:30.407520Z",
"url": "https://files.pythonhosted.org/packages/49/d8/968131e418a5f19b4d166717740eb6e2ff82796f3872de884ec89c76b8fe/fuzzy_date-0.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2acc33b351575c3eac426ca4818f26a8ff1c0b2a691bd7ab74c6bafb6c5c5038",
"md5": "5d90ce0dc7928b77864a38e76fa06f80",
"sha256": "f2f4ca1c3c92b39a02d5572414784eda0d9ab6c6f033c814948aefdd9b6b09e9"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5d90ce0dc7928b77864a38e76fa06f80",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 410500,
"upload_time": "2024-12-13T12:28:47",
"upload_time_iso_8601": "2024-12-13T12:28:47.311090Z",
"url": "https://files.pythonhosted.org/packages/2a/cc/33b351575c3eac426ca4818f26a8ff1c0b2a691bd7ab74c6bafb6c5c5038/fuzzy_date-0.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f57c1baeab6610e97c1328b88f34cd7ce32bd1fc26e33340e718e224c27bbaed",
"md5": "a51d676c38bc20207b7cd023d12abcb1",
"sha256": "c9b3673fa1261f43825db21d0698431c7a9b64bb3401b5ed5dad2ed109e5e939"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a51d676c38bc20207b7cd023d12abcb1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 419824,
"upload_time": "2024-12-13T12:29:06",
"upload_time_iso_8601": "2024-12-13T12:29:06.109545Z",
"url": "https://files.pythonhosted.org/packages/f5/7c/1baeab6610e97c1328b88f34cd7ce32bd1fc26e33340e718e224c27bbaed/fuzzy_date-0.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ce1e2e28d2e034711ba1a812d7b219c7943d2d355a7c393be7079755f019dab",
"md5": "09a654a5f15b0d4a5cc3f4f2a59e9886",
"sha256": "b9426dba777a804fe45c565e687b52ced5e742ff7539583508fc41af13a10eca"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "09a654a5f15b0d4a5cc3f4f2a59e9886",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 366081,
"upload_time": "2024-12-13T12:29:37",
"upload_time_iso_8601": "2024-12-13T12:29:37.128288Z",
"url": "https://files.pythonhosted.org/packages/8c/e1/e2e28d2e034711ba1a812d7b219c7943d2d355a7c393be7079755f019dab/fuzzy_date-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4f953c38239cd8454e4ff63c2fcb738b2fa8b3323fdfe5472975851404f9d5de",
"md5": "91a57ab937197bc17494d91226f87b98",
"sha256": "1ec07e51480ffd80a3e3fc89eb300e6028a0ce8d6ea63d99ac8b50d6a9759308"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "91a57ab937197bc17494d91226f87b98",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 389171,
"upload_time": "2024-12-13T12:29:27",
"upload_time_iso_8601": "2024-12-13T12:29:27.204082Z",
"url": "https://files.pythonhosted.org/packages/4f/95/3c38239cd8454e4ff63c2fcb738b2fa8b3323fdfe5472975851404f9d5de/fuzzy_date-0.5.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "83fd88d258c0dbb80f048900276a31e10c56f40d2e4a51ce37cc79ca724f6fd0",
"md5": "363953b014e224fa26c3a0f5f27cd41d",
"sha256": "0180ba98b11222db4eeb6276d29c8421e4d897c56204468fa2101fd45d138d38"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "363953b014e224fa26c3a0f5f27cd41d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 540764,
"upload_time": "2024-12-13T12:30:06",
"upload_time_iso_8601": "2024-12-13T12:30:06.329083Z",
"url": "https://files.pythonhosted.org/packages/83/fd/88d258c0dbb80f048900276a31e10c56f40d2e4a51ce37cc79ca724f6fd0/fuzzy_date-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6c2f5e8aef656e34c1b62bde51cb14a8d38cddc1df7be60472f3f13edab91a7",
"md5": "44d878311eb27e4a76367e28c1062600",
"sha256": "4e1af0457469ae01d7f59966891654a407e020b67dbca440890d1a26c2468e04"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "44d878311eb27e4a76367e28c1062600",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 634185,
"upload_time": "2024-12-13T12:30:21",
"upload_time_iso_8601": "2024-12-13T12:30:21.908557Z",
"url": "https://files.pythonhosted.org/packages/c6/c2/f5e8aef656e34c1b62bde51cb14a8d38cddc1df7be60472f3f13edab91a7/fuzzy_date-0.5.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4450f389c86f48f2295cb5f2fb26e9c840cf67736122ea1b339cf53ef91c1536",
"md5": "bc20db9c75c0b3d55dbc066c91fc8cb7",
"sha256": "5c7809bdb61233fa219ab6405dd0120167527143740c6a81d94fb3d78aa60bad"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "bc20db9c75c0b3d55dbc066c91fc8cb7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 563986,
"upload_time": "2024-12-13T12:30:41",
"upload_time_iso_8601": "2024-12-13T12:30:41.860574Z",
"url": "https://files.pythonhosted.org/packages/44/50/f389c86f48f2295cb5f2fb26e9c840cf67736122ea1b339cf53ef91c1536/fuzzy_date-0.5.1-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57a22f1a374d1119faa9f942ef5a278516c30962829eb8dd2b3a2ebb2b095ac7",
"md5": "8eb5044dcb27a16d9fd2b822c044bebf",
"sha256": "3c545bb50ec4800e980e1510ea79316bf4b621dfa9c9baadf7b05fd558fabc52"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8eb5044dcb27a16d9fd2b822c044bebf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 536758,
"upload_time": "2024-12-13T12:30:59",
"upload_time_iso_8601": "2024-12-13T12:30:59.341991Z",
"url": "https://files.pythonhosted.org/packages/57/a2/2f1a374d1119faa9f942ef5a278516c30962829eb8dd2b3a2ebb2b095ac7/fuzzy_date-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01ba3661a8dc16a1ffd5f01a4ac39d92f36e14f26bd1c4422121d20073dc577c",
"md5": "bc11c38d866ca875da445804d285c930",
"sha256": "adea72aba28a6b9555a733fcdac008a98cf25921f13182ef9940833d2294d41a"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "bc11c38d866ca875da445804d285c930",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 204604,
"upload_time": "2024-12-13T12:31:24",
"upload_time_iso_8601": "2024-12-13T12:31:24.762356Z",
"url": "https://files.pythonhosted.org/packages/01/ba/3661a8dc16a1ffd5f01a4ac39d92f36e14f26bd1c4422121d20073dc577c/fuzzy_date-0.5.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4970c7dabe582132be10c661e7c4580d219869334064c7350dde04c59e9c447",
"md5": "262a9db77089d36e697a632c2f0d9dbc",
"sha256": "f5db03ed7be01781bd775ba07b9e850378130aaa52ca553b31c5939a562f0220"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "262a9db77089d36e697a632c2f0d9dbc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 213712,
"upload_time": "2024-12-13T12:31:15",
"upload_time_iso_8601": "2024-12-13T12:31:15.505511Z",
"url": "https://files.pythonhosted.org/packages/b4/97/0c7dabe582132be10c661e7c4580d219869334064c7350dde04c59e9c447/fuzzy_date-0.5.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "04a6a5530a3e0f960697fde6bf9f198d8b54a849870cbc2054dafdf9d3ea1232",
"md5": "eb32aa89d5a0558051d3bb81f80c6b26",
"sha256": "800cbb38d226eda33ccc048afff829ca78f3f0600c1b35159a91c8218f851ea4"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "eb32aa89d5a0558051d3bb81f80c6b26",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 330872,
"upload_time": "2024-12-13T12:30:00",
"upload_time_iso_8601": "2024-12-13T12:30:00.193494Z",
"url": "https://files.pythonhosted.org/packages/04/a6/a5530a3e0f960697fde6bf9f198d8b54a849870cbc2054dafdf9d3ea1232/fuzzy_date-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14102138e433c3f1adb8c382e6a59607f7d0c7d1ee3614b35fc5108d9014f12f",
"md5": "92964abb82343e3bb5da14961b2d41a1",
"sha256": "58ab3ddf346f8d2ac92c791e1aaedc921bb31d33563cf272eeefe37e63173765"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "92964abb82343e3bb5da14961b2d41a1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 321493,
"upload_time": "2024-12-13T12:29:54",
"upload_time_iso_8601": "2024-12-13T12:29:54.106176Z",
"url": "https://files.pythonhosted.org/packages/14/10/2138e433c3f1adb8c382e6a59607f7d0c7d1ee3614b35fc5108d9014f12f/fuzzy_date-0.5.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c07ec4aa9454e3ec10f8d35c03c105c8c71ce5152db44e33f919b5090e320355",
"md5": "efd4f54b407e33713810813c7725410d",
"sha256": "6ad95f9fc733387e91e7711c5b68dc18dfa65a64cd3adf66f88441b0748d61de"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "efd4f54b407e33713810813c7725410d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 363914,
"upload_time": "2024-12-13T12:28:09",
"upload_time_iso_8601": "2024-12-13T12:28:09.345966Z",
"url": "https://files.pythonhosted.org/packages/c0/7e/c4aa9454e3ec10f8d35c03c105c8c71ce5152db44e33f919b5090e320355/fuzzy_date-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e2b7f3419dfea2d7f55e7d2ec78f6ec1082c23522808eaaa8119c6e54a9ef85",
"md5": "48403d82874fce9c762edb0c19146d44",
"sha256": "3eba7dad5d1da2c23661590e76142bb284d668f654cbeeb8249cb65a5d617db2"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "48403d82874fce9c762edb0c19146d44",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 372080,
"upload_time": "2024-12-13T12:28:33",
"upload_time_iso_8601": "2024-12-13T12:28:33.215932Z",
"url": "https://files.pythonhosted.org/packages/8e/2b/7f3419dfea2d7f55e7d2ec78f6ec1082c23522808eaaa8119c6e54a9ef85/fuzzy_date-0.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c08b015da29475a8185185e2f5ee773ffca2defc805d463d9fd77be327f1ee71",
"md5": "70d8cebe373fc655decf10037891f611",
"sha256": "de5a71680f5527571c667446d58b10192e7b725ae5a4dfb8954da9e2046a2f40"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "70d8cebe373fc655decf10037891f611",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 410579,
"upload_time": "2024-12-13T12:28:51",
"upload_time_iso_8601": "2024-12-13T12:28:51.348827Z",
"url": "https://files.pythonhosted.org/packages/c0/8b/015da29475a8185185e2f5ee773ffca2defc805d463d9fd77be327f1ee71/fuzzy_date-0.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c1caaa141be6d33c6e154bc23c697b22772a3d3bf3142900b5705b71f84edcfa",
"md5": "67de563b59cc931b42a0a77457ce079b",
"sha256": "651bbe421404c23033657cc92747a04c364716162ea4014d9101538cfea5bb3c"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "67de563b59cc931b42a0a77457ce079b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 419197,
"upload_time": "2024-12-13T12:29:07",
"upload_time_iso_8601": "2024-12-13T12:29:07.774218Z",
"url": "https://files.pythonhosted.org/packages/c1/ca/aa141be6d33c6e154bc23c697b22772a3d3bf3142900b5705b71f84edcfa/fuzzy_date-0.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5dcff2d554987239e7c3d51d159934700847a9b9fec69b76b5f649971599405",
"md5": "e85a399418b8af4bb177cbb1f6054d41",
"sha256": "8d18d01915ebf026931d5065549016fd53aaee3d78af8fccdbdaa9eb6f3aca2a"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e85a399418b8af4bb177cbb1f6054d41",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 366056,
"upload_time": "2024-12-13T12:29:40",
"upload_time_iso_8601": "2024-12-13T12:29:40.660301Z",
"url": "https://files.pythonhosted.org/packages/e5/dc/ff2d554987239e7c3d51d159934700847a9b9fec69b76b5f649971599405/fuzzy_date-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d4fddcc7a877c641289f93f9511bc1b65c296ac48d0d567107caf163df8b7a4f",
"md5": "612925d207c5f7e003d485ce83b3a22e",
"sha256": "bc4be12759007ff2b5b695dae92d0e3b376540ddf580945aeff1f91c615adbc5"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "612925d207c5f7e003d485ce83b3a22e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 390430,
"upload_time": "2024-12-13T12:29:28",
"upload_time_iso_8601": "2024-12-13T12:29:28.792276Z",
"url": "https://files.pythonhosted.org/packages/d4/fd/dcc7a877c641289f93f9511bc1b65c296ac48d0d567107caf163df8b7a4f/fuzzy_date-0.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b62760e48d32536d243a4c54598356a9e0f75b10b9672eba70214b078a5619c",
"md5": "77b5a29a720bfb1d910124113fafdf15",
"sha256": "72833b215658eb0748acd393e1353a2eb815adf3e49b415e8c19ea204af49a1b"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "77b5a29a720bfb1d910124113fafdf15",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 541291,
"upload_time": "2024-12-13T12:30:07",
"upload_time_iso_8601": "2024-12-13T12:30:07.977150Z",
"url": "https://files.pythonhosted.org/packages/9b/62/760e48d32536d243a4c54598356a9e0f75b10b9672eba70214b078a5619c/fuzzy_date-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a81d412239d2c3563e5626ca1fd18abdace39706815ec6c32f9b9915acb46d2",
"md5": "319900749e5235670dc31af3b9f471cd",
"sha256": "2ff7e34a655ecd4659ffd8868e66023078315d43595b2b9b3d6b7f58403273e7"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "319900749e5235670dc31af3b9f471cd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 634414,
"upload_time": "2024-12-13T12:30:24",
"upload_time_iso_8601": "2024-12-13T12:30:24.912065Z",
"url": "https://files.pythonhosted.org/packages/1a/81/d412239d2c3563e5626ca1fd18abdace39706815ec6c32f9b9915acb46d2/fuzzy_date-0.5.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f74187c5c04ffcd0353a29bd1ed4bac860a4b93aa80382601a683ce9746b063",
"md5": "962eadc8ebd71a2baf2a6c2e944644fd",
"sha256": "acbf2adb4b9d656ed28adf70843f2ddf034dce2ce99a4039057dfd54ba7e2df1"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "962eadc8ebd71a2baf2a6c2e944644fd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 564988,
"upload_time": "2024-12-13T12:30:43",
"upload_time_iso_8601": "2024-12-13T12:30:43.532815Z",
"url": "https://files.pythonhosted.org/packages/7f/74/187c5c04ffcd0353a29bd1ed4bac860a4b93aa80382601a683ce9746b063/fuzzy_date-0.5.1-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32581e37e0d625fe9567f2e21c7ea02c1543178244cd6a45b2874b35a6cbf73a",
"md5": "3b696dac69a26ef29882ce71af36eee8",
"sha256": "76166e325de35919f2cdf7fe4323db8295f0c769d61886475c4d4b0b1652d007"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3b696dac69a26ef29882ce71af36eee8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 536735,
"upload_time": "2024-12-13T12:31:01",
"upload_time_iso_8601": "2024-12-13T12:31:01.127768Z",
"url": "https://files.pythonhosted.org/packages/32/58/1e37e0d625fe9567f2e21c7ea02c1543178244cd6a45b2874b35a6cbf73a/fuzzy_date-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12a6a05e96532445a13edc031a5933e51d5ac65b220838dad90b61e34bd6d1e6",
"md5": "27d7abb599c5c7d29bad8d475687ad43",
"sha256": "2c3ff84f2db616ffeebf8fda5198134f6e3eaf06f0d3be8c580abc2d4f7b2d93"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "27d7abb599c5c7d29bad8d475687ad43",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 204826,
"upload_time": "2024-12-13T12:31:26",
"upload_time_iso_8601": "2024-12-13T12:31:26.432816Z",
"url": "https://files.pythonhosted.org/packages/12/a6/a05e96532445a13edc031a5933e51d5ac65b220838dad90b61e34bd6d1e6/fuzzy_date-0.5.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bfbe2d8dc4c4721e74b86f9bffa9bb1141ea5ad2de342a053b075e6f6110bc51",
"md5": "222fa1493dac822e207580419539481a",
"sha256": "c830d6bc339e75824521d15b4382cd49a86d1ebba78d0c6616b28a0df93d2092"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "222fa1493dac822e207580419539481a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 213729,
"upload_time": "2024-12-13T12:31:19",
"upload_time_iso_8601": "2024-12-13T12:31:19.967414Z",
"url": "https://files.pythonhosted.org/packages/bf/be/2d8dc4c4721e74b86f9bffa9bb1141ea5ad2de342a053b075e6f6110bc51/fuzzy_date-0.5.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a236a8e0299d0e9fbf16d86d59b65cf69431ec8ece561440cf09265d7ccb3309",
"md5": "2d270f4813bc1bbd04e76b11c45bb61e",
"sha256": "fd3ad6bd784dd3dcb64e9aa487a31b66be519d91ee6ef80762f3d858ef2bb594"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "2d270f4813bc1bbd04e76b11c45bb61e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 329003,
"upload_time": "2024-12-13T12:30:03",
"upload_time_iso_8601": "2024-12-13T12:30:03.095068Z",
"url": "https://files.pythonhosted.org/packages/a2/36/a8e0299d0e9fbf16d86d59b65cf69431ec8ece561440cf09265d7ccb3309/fuzzy_date-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "766409d10ef1de9b1f971ffb90801ff5af649548fdd405797d70584d5a952276",
"md5": "4bf625f3f9e787c08c894cc185a4d651",
"sha256": "a2b83c788d7aecceaa8b8722816d79c29791f70634c69e6825eb94d342e1250e"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4bf625f3f9e787c08c894cc185a4d651",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 319406,
"upload_time": "2024-12-13T12:29:55",
"upload_time_iso_8601": "2024-12-13T12:29:55.698080Z",
"url": "https://files.pythonhosted.org/packages/76/64/09d10ef1de9b1f971ffb90801ff5af649548fdd405797d70584d5a952276/fuzzy_date-0.5.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6abf44dfe3f5c30f5a0a4429610e700ee51c73aaef5461c63b90d3235829c09b",
"md5": "6089bd54eda116844c67ba6956658222",
"sha256": "c4f270bf40cd61c041e3b29b19e8764fb0d8bcf6e07b692c3705ec4f60ea3f1a"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6089bd54eda116844c67ba6956658222",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 362528,
"upload_time": "2024-12-13T12:28:12",
"upload_time_iso_8601": "2024-12-13T12:28:12.505980Z",
"url": "https://files.pythonhosted.org/packages/6a/bf/44dfe3f5c30f5a0a4429610e700ee51c73aaef5461c63b90d3235829c09b/fuzzy_date-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9be8c37ddcdb10240f8f10f270e42ec11ef46f210622444d864311ec3f37d39f",
"md5": "c5890980e9df985c7ddeb1988729929f",
"sha256": "ff01fed5a6a03ed59ab1795673bbbdc02417771160a6e7531129d0f321ea9c18"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c5890980e9df985c7ddeb1988729929f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 371484,
"upload_time": "2024-12-13T12:28:36",
"upload_time_iso_8601": "2024-12-13T12:28:36.040144Z",
"url": "https://files.pythonhosted.org/packages/9b/e8/c37ddcdb10240f8f10f270e42ec11ef46f210622444d864311ec3f37d39f/fuzzy_date-0.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d0ef425693ca7319369da8299bd20cbf5b3f7ca4ab52229f1bd1883deda1953e",
"md5": "e5ed9b14d21970e23696e23caec09b59",
"sha256": "8125a04d386ccbaa2cd2808fca1817fda8706ad01b065241d18c5286101c8ab1"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e5ed9b14d21970e23696e23caec09b59",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 409742,
"upload_time": "2024-12-13T12:28:53",
"upload_time_iso_8601": "2024-12-13T12:28:53.305342Z",
"url": "https://files.pythonhosted.org/packages/d0/ef/425693ca7319369da8299bd20cbf5b3f7ca4ab52229f1bd1883deda1953e/fuzzy_date-0.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b2eba9565186a85f2deffdb9c5629cdf0702506b6023c2f0775baa8940964739",
"md5": "331f47a8f2ce5037772ef2c9e53d3207",
"sha256": "0863147f7d7d36d2edbf89b8d8bcf3ea0401f028617196284b4b2b2c87198f13"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "331f47a8f2ce5037772ef2c9e53d3207",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 418498,
"upload_time": "2024-12-13T12:29:11",
"upload_time_iso_8601": "2024-12-13T12:29:11.187641Z",
"url": "https://files.pythonhosted.org/packages/b2/eb/a9565186a85f2deffdb9c5629cdf0702506b6023c2f0775baa8940964739/fuzzy_date-0.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ced52900c449303e6579ff7236934ff4ec74a030a83bb7c4eb1c60d7218e923f",
"md5": "7954d862abd6768f781de330abf7fa9b",
"sha256": "47958bb006caadc4d99dc1bbded2712bbc4c81db0a0ad8817f8300b62b5b54fc"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7954d862abd6768f781de330abf7fa9b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 364316,
"upload_time": "2024-12-13T12:29:43",
"upload_time_iso_8601": "2024-12-13T12:29:43.015397Z",
"url": "https://files.pythonhosted.org/packages/ce/d5/2900c449303e6579ff7236934ff4ec74a030a83bb7c4eb1c60d7218e923f/fuzzy_date-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7f6d2b5b349a46518af2f6de11ca3e046b40273c8964493c0cbb0aa865dfdb6",
"md5": "b7ea89e5ca58be9ad1af86040cb23484",
"sha256": "5fc8628dbca3a20df40edd497ec2c982de8ee4c11c05ded9a4a3c9452c233cee"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "b7ea89e5ca58be9ad1af86040cb23484",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 389269,
"upload_time": "2024-12-13T12:29:30",
"upload_time_iso_8601": "2024-12-13T12:29:30.582799Z",
"url": "https://files.pythonhosted.org/packages/e7/f6/d2b5b349a46518af2f6de11ca3e046b40273c8964493c0cbb0aa865dfdb6/fuzzy_date-0.5.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "87c78bad73b95bcda31abf14fae96aa13099d8f6e45047d96f45a2c0d615b57b",
"md5": "3124c24a1b2498f832429c8418773beb",
"sha256": "918d3b95c68437e6a9ceb382ea5cad109607ce5bd27143d7746f38e234be5b5e"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3124c24a1b2498f832429c8418773beb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 539518,
"upload_time": "2024-12-13T12:30:09",
"upload_time_iso_8601": "2024-12-13T12:30:09.617471Z",
"url": "https://files.pythonhosted.org/packages/87/c7/8bad73b95bcda31abf14fae96aa13099d8f6e45047d96f45a2c0d615b57b/fuzzy_date-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d07510f0b161c8f3a92904138ae25983029dc69d5fe79a74a37c86e1eddfca4e",
"md5": "f82aef6235c70af43fefa4d1f65dded8",
"sha256": "02d7b82a85a5aeeedc4cf067d5ab402555c48639b597b5068e898597dc71abd8"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "f82aef6235c70af43fefa4d1f65dded8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 633948,
"upload_time": "2024-12-13T12:30:28",
"upload_time_iso_8601": "2024-12-13T12:30:28.590611Z",
"url": "https://files.pythonhosted.org/packages/d0/75/10f0b161c8f3a92904138ae25983029dc69d5fe79a74a37c86e1eddfca4e/fuzzy_date-0.5.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8e7247fe0e2edb02de29a79ae27d431958ff12cb540140b44242f350aef7244",
"md5": "90f9b8d47b5588b4b72e6dc5879f84bb",
"sha256": "598f9a8d46356e8df58a511f95fbc147955ade000884a278b28d6f4f7b19201e"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "90f9b8d47b5588b4b72e6dc5879f84bb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 563363,
"upload_time": "2024-12-13T12:30:45",
"upload_time_iso_8601": "2024-12-13T12:30:45.200866Z",
"url": "https://files.pythonhosted.org/packages/c8/e7/247fe0e2edb02de29a79ae27d431958ff12cb540140b44242f350aef7244/fuzzy_date-0.5.1-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "49af5c08a2b2d28247420c3a9af49624822e754731d1790e9ba13721872596b9",
"md5": "f29253a60245629405e4553b47c5e2bb",
"sha256": "d2742273eca477781ad91f25948df88ec44fecb8d79f6c9f0bf26a24ec121ca9"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f29253a60245629405e4553b47c5e2bb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 534500,
"upload_time": "2024-12-13T12:31:02",
"upload_time_iso_8601": "2024-12-13T12:31:02.918119Z",
"url": "https://files.pythonhosted.org/packages/49/af/5c08a2b2d28247420c3a9af49624822e754731d1790e9ba13721872596b9/fuzzy_date-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3cb74b252781a54913064ba8e221d0bd9ae6d92779bc9d66d848950a0079dd1f",
"md5": "487266ab076a37a48a46c9304b31cef2",
"sha256": "548927e1dcfa94c40985636ef9fa9b64f4d5b2da99cbe5a4af682057e85e9584"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "487266ab076a37a48a46c9304b31cef2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 204080,
"upload_time": "2024-12-13T12:31:28",
"upload_time_iso_8601": "2024-12-13T12:31:28.071191Z",
"url": "https://files.pythonhosted.org/packages/3c/b7/4b252781a54913064ba8e221d0bd9ae6d92779bc9d66d848950a0079dd1f/fuzzy_date-0.5.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c611ad6d5e8a8c7a3faae0264832c63022635020b105eaf79f296b979a520970",
"md5": "5f353bd11de5446c2f78446757d0b51e",
"sha256": "bef169d29a06de8c3e05f5ef9b2f6d200fafd5d99ab9b3fd74d0ca43339c9dcf"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "5f353bd11de5446c2f78446757d0b51e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 212650,
"upload_time": "2024-12-13T12:31:21",
"upload_time_iso_8601": "2024-12-13T12:31:21.519368Z",
"url": "https://files.pythonhosted.org/packages/c6/11/ad6d5e8a8c7a3faae0264832c63022635020b105eaf79f296b979a520970/fuzzy_date-0.5.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bb57a1ed6459612d1636318ee7ad44c7daf6d3b0af9f76074db83546e11b5f75",
"md5": "476154913141b956f22346eae3257da9",
"sha256": "718c286c8ef4da807486a3d4c7d9908b605c54208ad151f8c418d98101f84276"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "476154913141b956f22346eae3257da9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 328141,
"upload_time": "2024-12-13T12:30:04",
"upload_time_iso_8601": "2024-12-13T12:30:04.699551Z",
"url": "https://files.pythonhosted.org/packages/bb/57/a1ed6459612d1636318ee7ad44c7daf6d3b0af9f76074db83546e11b5f75/fuzzy_date-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4ff5d6605ea3e8898380bb88b2c40a4f4d9c3c003863be005426ccb3e78ff24f",
"md5": "25cf72dcd5d6868fa6f6966d638c523d",
"sha256": "960dfcfe07f323069d74be9f618c0c532f9e8b9d25b9f20f17d42138eab15e8f"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "25cf72dcd5d6868fa6f6966d638c523d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 318958,
"upload_time": "2024-12-13T12:29:58",
"upload_time_iso_8601": "2024-12-13T12:29:58.540750Z",
"url": "https://files.pythonhosted.org/packages/4f/f5/d6605ea3e8898380bb88b2c40a4f4d9c3c003863be005426ccb3e78ff24f/fuzzy_date-0.5.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3de2ca0d44f38c45571e3e7b4d15d73b95502d3befe375b4eb32368b8ee0ecef",
"md5": "30410e6114e656f4ce0e9c111355af81",
"sha256": "b16db4c104a77954e4433642e692fcb757bbe1f8cabaaf9cda373c703ec79caa"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "30410e6114e656f4ce0e9c111355af81",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 362315,
"upload_time": "2024-12-13T12:28:15",
"upload_time_iso_8601": "2024-12-13T12:28:15.720855Z",
"url": "https://files.pythonhosted.org/packages/3d/e2/ca0d44f38c45571e3e7b4d15d73b95502d3befe375b4eb32368b8ee0ecef/fuzzy_date-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca12f38b164ef591d2dbdd62c171208532cc1a0d412d5909eba60bd87fbbe9dc",
"md5": "aff04c7829599ba8bfd4f2d03ad7e9ea",
"sha256": "d90eae9d0aea2c511c66ceb99ed4cd2aadd77a02d4fa6a8cc3d655b4171d753c"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "aff04c7829599ba8bfd4f2d03ad7e9ea",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 370518,
"upload_time": "2024-12-13T12:28:38",
"upload_time_iso_8601": "2024-12-13T12:28:38.662011Z",
"url": "https://files.pythonhosted.org/packages/ca/12/f38b164ef591d2dbdd62c171208532cc1a0d412d5909eba60bd87fbbe9dc/fuzzy_date-0.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "458e56721aae52cad56c96a20add2aeb8077da69c625409f1420b9df5fdccb90",
"md5": "2c09126c0db39c18ecc55d2b3a5bacaf",
"sha256": "780bf77bc5f0cef2924702bc3b7b2e0d137e8a94b2596b1af986939fedb235aa"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2c09126c0db39c18ecc55d2b3a5bacaf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 409281,
"upload_time": "2024-12-13T12:28:56",
"upload_time_iso_8601": "2024-12-13T12:28:56.082331Z",
"url": "https://files.pythonhosted.org/packages/45/8e/56721aae52cad56c96a20add2aeb8077da69c625409f1420b9df5fdccb90/fuzzy_date-0.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "409fd4261fc3f1d08f71753aa562e63e7523c231ca135a20e229e6ec9dc9b8e9",
"md5": "6781421897f3721491572ff692a2d954",
"sha256": "82c1f53bd42771f0097a8ac7e2f3dab733b1ea75732127fb79aa28280e01c544"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6781421897f3721491572ff692a2d954",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 417993,
"upload_time": "2024-12-13T12:29:13",
"upload_time_iso_8601": "2024-12-13T12:29:13.922654Z",
"url": "https://files.pythonhosted.org/packages/40/9f/d4261fc3f1d08f71753aa562e63e7523c231ca135a20e229e6ec9dc9b8e9/fuzzy_date-0.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd25babd775cb7d51a96c21e2a128f418c32066995ebe6f32db2f46fb4138440",
"md5": "3d25f33f157a509f3d953dda94b934e7",
"sha256": "2c3719287810626b30c11ce262a21bad67df83bbb39749c037581a2527a06d7b"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3d25f33f157a509f3d953dda94b934e7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 363957,
"upload_time": "2024-12-13T12:29:44",
"upload_time_iso_8601": "2024-12-13T12:29:44.971087Z",
"url": "https://files.pythonhosted.org/packages/fd/25/babd775cb7d51a96c21e2a128f418c32066995ebe6f32db2f46fb4138440/fuzzy_date-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "456c442325bd1fe01b094cb3812f30c74031cc763bdd514032de71d2fb57ed49",
"md5": "7677fc9cf7b24b2fe42109a82fe47f5f",
"sha256": "c0a156942f37cb02db0f3ed6169324b4a0a30eae99f6a930c43eff68f5bbc06e"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "7677fc9cf7b24b2fe42109a82fe47f5f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 388259,
"upload_time": "2024-12-13T12:29:32",
"upload_time_iso_8601": "2024-12-13T12:29:32.204588Z",
"url": "https://files.pythonhosted.org/packages/45/6c/442325bd1fe01b094cb3812f30c74031cc763bdd514032de71d2fb57ed49/fuzzy_date-0.5.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd8cc3acd5209ced1aa9e2083359dc91e6c52a3407800369bb9e4141ceb80444",
"md5": "b4a64767c0624c2c48d80885d75e641f",
"sha256": "0e027d0f4fde2302a6b1c86bc337822e78a6e53ea07ad5d102ee16ae56e433fe"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b4a64767c0624c2c48d80885d75e641f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 539239,
"upload_time": "2024-12-13T12:30:11",
"upload_time_iso_8601": "2024-12-13T12:30:11.198961Z",
"url": "https://files.pythonhosted.org/packages/fd/8c/c3acd5209ced1aa9e2083359dc91e6c52a3407800369bb9e4141ceb80444/fuzzy_date-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d7b9308b58de57c1bdf6724bb2ba20668e994498d0c29837b783e170071126e5",
"md5": "4cb76b7e06804feaa23a311589458f4a",
"sha256": "ef3f8b478e5387a4e0ea422e5ed4253c717ddd31ec963197fa5bc783c9516430"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "4cb76b7e06804feaa23a311589458f4a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 632962,
"upload_time": "2024-12-13T12:30:30",
"upload_time_iso_8601": "2024-12-13T12:30:30.500086Z",
"url": "https://files.pythonhosted.org/packages/d7/b9/308b58de57c1bdf6724bb2ba20668e994498d0c29837b783e170071126e5/fuzzy_date-0.5.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4e779e0f685cbab640b70806cf6859002ee2d47a6da4c7f69e2ca903e3cd53c0",
"md5": "7162c1a71c866c7e03dae0f7bd324464",
"sha256": "7f2c4cf009f26748f26d61e101823745e64f1dd8f1bac05494f303dbee71bcf5"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7162c1a71c866c7e03dae0f7bd324464",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 562552,
"upload_time": "2024-12-13T12:30:47",
"upload_time_iso_8601": "2024-12-13T12:30:47.089804Z",
"url": "https://files.pythonhosted.org/packages/4e/77/9e0f685cbab640b70806cf6859002ee2d47a6da4c7f69e2ca903e3cd53c0/fuzzy_date-0.5.1-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "804f785c5d08f8278419b1df8144a615af4b7d8d08512068988949813a9cf5a8",
"md5": "ac2146ace913ea084a2804373a7f7821",
"sha256": "7657312d81ab9d9571abe4cfd5e5e77bc7a36d03bd99e36ed5d5335fc75d16bc"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ac2146ace913ea084a2804373a7f7821",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 534578,
"upload_time": "2024-12-13T12:31:04",
"upload_time_iso_8601": "2024-12-13T12:31:04.684347Z",
"url": "https://files.pythonhosted.org/packages/80/4f/785c5d08f8278419b1df8144a615af4b7d8d08512068988949813a9cf5a8/fuzzy_date-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "54a75e99149af4568b0ba036caf3a651daf630bdf5609a43eae3edd94875140a",
"md5": "5245a85d9e114045189e59f96a3da3a7",
"sha256": "d735af851e500194243ed94bff28ffbfadb3a105f12da2558707632b515b80de"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5245a85d9e114045189e59f96a3da3a7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 362174,
"upload_time": "2024-12-13T12:28:21",
"upload_time_iso_8601": "2024-12-13T12:28:21.758497Z",
"url": "https://files.pythonhosted.org/packages/54/a7/5e99149af4568b0ba036caf3a651daf630bdf5609a43eae3edd94875140a/fuzzy_date-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5a140e0187af5b5b380121c8879217f9f1b2c8a5b70fbdd6ecfb6bc5b8ae6c9",
"md5": "2569f3585ea41eeb76ddef0dc9b1d9bc",
"sha256": "5586f09bd9174dcf4172a5c1bf1b953a4f4e9dd78a44a7b7f5976b4ad96bb9c4"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2569f3585ea41eeb76ddef0dc9b1d9bc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 370072,
"upload_time": "2024-12-13T12:28:40",
"upload_time_iso_8601": "2024-12-13T12:28:40.169592Z",
"url": "https://files.pythonhosted.org/packages/f5/a1/40e0187af5b5b380121c8879217f9f1b2c8a5b70fbdd6ecfb6bc5b8ae6c9/fuzzy_date-0.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8624c2efac8e14fde0c262dee95ef5cd28b283315d838450aec7950aabc582c5",
"md5": "3ff21101e409d208f7b7458bcd98d91f",
"sha256": "ca9a1c3eb8fa60e611501f7d29901c44e026f5ff5ba1e4d29e531da390e9c817"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3ff21101e409d208f7b7458bcd98d91f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 409247,
"upload_time": "2024-12-13T12:28:58",
"upload_time_iso_8601": "2024-12-13T12:28:58.726042Z",
"url": "https://files.pythonhosted.org/packages/86/24/c2efac8e14fde0c262dee95ef5cd28b283315d838450aec7950aabc582c5/fuzzy_date-0.5.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "782bc8cd1ee326d70d2cca2155e6f7b0135eb35d44d07db627adb67f2389e3a7",
"md5": "3421c1f90f29db4ecd3db267d44fa1fa",
"sha256": "6c118842d1568a6ec4af43d4cb56964fa259305b36006bf95f3de026302806f8"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3421c1f90f29db4ecd3db267d44fa1fa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 422189,
"upload_time": "2024-12-13T12:29:16",
"upload_time_iso_8601": "2024-12-13T12:29:16.849806Z",
"url": "https://files.pythonhosted.org/packages/78/2b/c8cd1ee326d70d2cca2155e6f7b0135eb35d44d07db627adb67f2389e3a7/fuzzy_date-0.5.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f1fa579c8d8bd7b378d61d35769646570a58689a1cbd00d6a3e99a5c03651bd4",
"md5": "d2b290524973a5a3999f3254f26d8acf",
"sha256": "8eb74564631b5caef2bea6e4be25848695788f1d1f8a1e72817bf2e521d31095"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d2b290524973a5a3999f3254f26d8acf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 538827,
"upload_time": "2024-12-13T12:30:13",
"upload_time_iso_8601": "2024-12-13T12:30:13.093564Z",
"url": "https://files.pythonhosted.org/packages/f1/fa/579c8d8bd7b378d61d35769646570a58689a1cbd00d6a3e99a5c03651bd4/fuzzy_date-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d315607716600f11a164a8adfd687840fc1849764277393b587b7dab026ced2",
"md5": "cebd88a7ac9d222f2478f1a60f6bce6b",
"sha256": "bdaff89309927e07c155bc73f992f183e6da4a7003b225bbc8f8b7ecc0dd9ff5"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "cebd88a7ac9d222f2478f1a60f6bce6b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 632491,
"upload_time": "2024-12-13T12:30:32",
"upload_time_iso_8601": "2024-12-13T12:30:32.392506Z",
"url": "https://files.pythonhosted.org/packages/4d/31/5607716600f11a164a8adfd687840fc1849764277393b587b7dab026ced2/fuzzy_date-0.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06a78de8b855c9a295f1ae9e7bab350771fdf5fa56c6200ffa776de13d926c7b",
"md5": "074dd431d7888773b2e45fe31c7ecb06",
"sha256": "9a029a24e2887494faefd93493838add9090713807af32541fb0c0fdc4054070"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "074dd431d7888773b2e45fe31c7ecb06",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 563053,
"upload_time": "2024-12-13T12:30:49",
"upload_time_iso_8601": "2024-12-13T12:30:49.932540Z",
"url": "https://files.pythonhosted.org/packages/06/a7/8de8b855c9a295f1ae9e7bab350771fdf5fa56c6200ffa776de13d926c7b/fuzzy_date-0.5.1-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "500c4e6beab893fa6e44ab31ac04ca6bdc2fa138eec642376e8acf4afe93fce7",
"md5": "85bccef4b04b9061da4f2eff0147127d",
"sha256": "24507e43bdb6391db35cf10714df4fdee50df88e6b88e00bcd0b3f31bccbf11e"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "85bccef4b04b9061da4f2eff0147127d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 535118,
"upload_time": "2024-12-13T12:31:06",
"upload_time_iso_8601": "2024-12-13T12:31:06.668368Z",
"url": "https://files.pythonhosted.org/packages/50/0c/4e6beab893fa6e44ab31ac04ca6bdc2fa138eec642376e8acf4afe93fce7/fuzzy_date-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aaa8d382860a47d7bca267e62a076a6ecb4bb0fca7b0049801d83dd72319741c",
"md5": "7af96163d33dca673b98aa7340913f7f",
"sha256": "22dc9154e78bbbd067a763f877f1e4231b18134e13be25cfde6b724235d84944"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7af96163d33dca673b98aa7340913f7f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 365045,
"upload_time": "2024-12-13T12:28:23",
"upload_time_iso_8601": "2024-12-13T12:28:23.343703Z",
"url": "https://files.pythonhosted.org/packages/aa/a8/d382860a47d7bca267e62a076a6ecb4bb0fca7b0049801d83dd72319741c/fuzzy_date-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1ea4d046380e042ab5265cca472dd8fa48896cd071b962df0c64d1d07c480d96",
"md5": "aba28b7883985f6e351beeb3780d59de",
"sha256": "88e91b3f0baf99916b972c697ea477775849cb5dbd4b79a97a4a22860e5359e0"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "aba28b7883985f6e351beeb3780d59de",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 372040,
"upload_time": "2024-12-13T12:28:42",
"upload_time_iso_8601": "2024-12-13T12:28:42.138205Z",
"url": "https://files.pythonhosted.org/packages/1e/a4/d046380e042ab5265cca472dd8fa48896cd071b962df0c64d1d07c480d96/fuzzy_date-0.5.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0946db8b930d8f8d46760246306f2789c97e1a7d7ab4dfbe253daff902e35c3d",
"md5": "eeeeaa0688e1a6467f211a20c37ca998",
"sha256": "816f02ed8d79de23552489b3547d0e6a87e9070e9ffd7d39e6f41d86e5671f43"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "eeeeaa0688e1a6467f211a20c37ca998",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 411401,
"upload_time": "2024-12-13T12:29:00",
"upload_time_iso_8601": "2024-12-13T12:29:00.300881Z",
"url": "https://files.pythonhosted.org/packages/09/46/db8b930d8f8d46760246306f2789c97e1a7d7ab4dfbe253daff902e35c3d/fuzzy_date-0.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "70685f55da250a732ee5b1696c9c2738a76221dd4e346c94e2ff6805790a5d50",
"md5": "30d7c47153688a155de50add225d47b8",
"sha256": "d66874f8d4518b20d0e5687a58be5c9eed82b9f1f75fc9bbdd804eee205100e7"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "30d7c47153688a155de50add225d47b8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 421040,
"upload_time": "2024-12-13T12:29:18",
"upload_time_iso_8601": "2024-12-13T12:29:18.715582Z",
"url": "https://files.pythonhosted.org/packages/70/68/5f55da250a732ee5b1696c9c2738a76221dd4e346c94e2ff6805790a5d50/fuzzy_date-0.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "df93e756f26586bea7f5d82de5f17b5bd3ce4c1404c2ff70f2d10c56cd9b5491",
"md5": "21267421ccfa041983f3cd672606a36a",
"sha256": "6f44d33047ce2aa215d555fbfe1d70a38ff23dc6a0877442f89cdc181b64ea5d"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "21267421ccfa041983f3cd672606a36a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 367091,
"upload_time": "2024-12-13T12:29:48",
"upload_time_iso_8601": "2024-12-13T12:29:48.604601Z",
"url": "https://files.pythonhosted.org/packages/df/93/e756f26586bea7f5d82de5f17b5bd3ce4c1404c2ff70f2d10c56cd9b5491/fuzzy_date-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f82b91f9fab8ca94b8c45855d97f1a0f8901d3812cc3dedf355a1c720f0f3571",
"md5": "5b615d1dd45104036b515cf197c403fa",
"sha256": "a8aef4a977b829e7cbe62c9aa227362718bdfc5dd682f4f0f5472b7b4d56a18e"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "5b615d1dd45104036b515cf197c403fa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 390155,
"upload_time": "2024-12-13T12:29:33",
"upload_time_iso_8601": "2024-12-13T12:29:33.904555Z",
"url": "https://files.pythonhosted.org/packages/f8/2b/91f9fab8ca94b8c45855d97f1a0f8901d3812cc3dedf355a1c720f0f3571/fuzzy_date-0.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "613704b8c1c8a47568cd7c501a823d822bb9a1c4f593958f2cc31f3a9bbe9796",
"md5": "59aac3ec9368b53a81537f9d0c13f0c9",
"sha256": "a38979d1c40719e3bbc98beb70fa8dd6481391931240565929c60bed3afc716e"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "59aac3ec9368b53a81537f9d0c13f0c9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 542443,
"upload_time": "2024-12-13T12:30:14",
"upload_time_iso_8601": "2024-12-13T12:30:14.856142Z",
"url": "https://files.pythonhosted.org/packages/61/37/04b8c1c8a47568cd7c501a823d822bb9a1c4f593958f2cc31f3a9bbe9796/fuzzy_date-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f20a7f4fef8f1f420125d3b97c35481f333017e02b2014c27ebded19b87c2295",
"md5": "5e0fc769906ca5f34b8b90230d140934",
"sha256": "5a1eca61ebc0e3114c8d152f7d3c592062fc6d3dae23e2ad9daff300a7c15410"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "5e0fc769906ca5f34b8b90230d140934",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 634418,
"upload_time": "2024-12-13T12:30:34",
"upload_time_iso_8601": "2024-12-13T12:30:34.456850Z",
"url": "https://files.pythonhosted.org/packages/f2/0a/7f4fef8f1f420125d3b97c35481f333017e02b2014c27ebded19b87c2295/fuzzy_date-0.5.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "76528c9da72fda719b1128dc3d6088eb61bc7b8b0c2147de165c5415ccd2460d",
"md5": "cf3aa916c2783869cbc89bb04fbfe37e",
"sha256": "cf0ec11856e95e42c8f3377eae1b3e9206499293362feff0dd1189eb45145508"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "cf3aa916c2783869cbc89bb04fbfe37e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 564566,
"upload_time": "2024-12-13T12:30:52",
"upload_time_iso_8601": "2024-12-13T12:30:52.923698Z",
"url": "https://files.pythonhosted.org/packages/76/52/8c9da72fda719b1128dc3d6088eb61bc7b8b0c2147de165c5415ccd2460d/fuzzy_date-0.5.1-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79b51ca7f0fe1e6e7110019c532dfeeb90229bacd8dd1cdfb3b160f9ba63b1f5",
"md5": "ea0e78d0fa6feede1c4c189196082cff",
"sha256": "863228daf671fecfd14687025f04263121755c75da790de330b8321a74821de1"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ea0e78d0fa6feede1c4c189196082cff",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 537830,
"upload_time": "2024-12-13T12:31:08",
"upload_time_iso_8601": "2024-12-13T12:31:08.460655Z",
"url": "https://files.pythonhosted.org/packages/79/b5/1ca7f0fe1e6e7110019c532dfeeb90229bacd8dd1cdfb3b160f9ba63b1f5/fuzzy_date-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e34a04400a6b4a944d64beef5f6d9845eb88c58875f6c46e3fabeea53c51543",
"md5": "d40f5f6eeb59c8b3a1d090b7e8eb7079",
"sha256": "cb51f3f2bcb42640c635e8f4643b027ba4aede5e677d99d11db9dd85207c8097"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "d40f5f6eeb59c8b3a1d090b7e8eb7079",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 205159,
"upload_time": "2024-12-13T12:31:30",
"upload_time_iso_8601": "2024-12-13T12:31:30.911108Z",
"url": "https://files.pythonhosted.org/packages/8e/34/a04400a6b4a944d64beef5f6d9845eb88c58875f6c46e3fabeea53c51543/fuzzy_date-0.5.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a4711c302995048053c7d91613f48a357588660f6c4238e69e81255fdf22258",
"md5": "b296badb287288f51fff188e942dbda1",
"sha256": "738b315555f3b473d122895154f1989e21793ed1f7a80c95fece24e8be918260"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "b296badb287288f51fff188e942dbda1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 214172,
"upload_time": "2024-12-13T12:31:23",
"upload_time_iso_8601": "2024-12-13T12:31:23.137211Z",
"url": "https://files.pythonhosted.org/packages/3a/47/11c302995048053c7d91613f48a357588660f6c4238e69e81255fdf22258/fuzzy_date-0.5.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "375b20767808fb6ced3410af1e9de430113cd23dae1a7e03a9c869eeae075da4",
"md5": "76a54a655b5a8c672569ece21a11148c",
"sha256": "968703e91c4a9d1bb9f05ccf99bd84be51557435fbb62d03cb6ac548116ce7ac"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "76a54a655b5a8c672569ece21a11148c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 366723,
"upload_time": "2024-12-13T12:28:25",
"upload_time_iso_8601": "2024-12-13T12:28:25.730029Z",
"url": "https://files.pythonhosted.org/packages/37/5b/20767808fb6ced3410af1e9de430113cd23dae1a7e03a9c869eeae075da4/fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e1683809e6b8860a2dfb2ffb7f9574d87ed830e316bb2166e3237363263ce34e",
"md5": "c8fe646baf495a7568d4c14de9e6d450",
"sha256": "9ff3464befc1da4969c7aff40707f5e55a5a1a54dd9622d26ae90652136f11b2"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c8fe646baf495a7568d4c14de9e6d450",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 373757,
"upload_time": "2024-12-13T12:28:43",
"upload_time_iso_8601": "2024-12-13T12:28:43.569966Z",
"url": "https://files.pythonhosted.org/packages/e1/68/3809e6b8860a2dfb2ffb7f9574d87ed830e316bb2166e3237363263ce34e/fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1277133e1900cc0c833db69cdcc210ad497bb21ebd9da13fc7a8b703ec279cd8",
"md5": "05e407dbcc981092c640dbcda272a833",
"sha256": "096fabf907f13d1fd0a3877dbab1291532d3a68b7d4d5ac99849645e80139b9f"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "05e407dbcc981092c640dbcda272a833",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 413059,
"upload_time": "2024-12-13T12:29:02",
"upload_time_iso_8601": "2024-12-13T12:29:02.585364Z",
"url": "https://files.pythonhosted.org/packages/12/77/133e1900cc0c833db69cdcc210ad497bb21ebd9da13fc7a8b703ec279cd8/fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "218a2cf2ee818bef98441eecb4bb129267bc7269f935d6f4ea900a2bade571a6",
"md5": "8be174fa9bfde9ffddcbf67b9947a692",
"sha256": "f860daec4d651788ca53bcf34d94701b2fa85ba9a10b7fba79fb35e841c8eb99"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8be174fa9bfde9ffddcbf67b9947a692",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 422338,
"upload_time": "2024-12-13T12:29:20",
"upload_time_iso_8601": "2024-12-13T12:29:20.410214Z",
"url": "https://files.pythonhosted.org/packages/21/8a/2cf2ee818bef98441eecb4bb129267bc7269f935d6f4ea900a2bade571a6/fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5ef0fc02f1fae504edf1c85e7742fe3adb126dad96d23feb7a35e92202942e3",
"md5": "c4e7733d5ef2cd3b633684251f057f97",
"sha256": "a04f69f509d19ca924e053fe09e6b9baaa9e9e55b934740830fb2251f53fc8a3"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c4e7733d5ef2cd3b633684251f057f97",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 368555,
"upload_time": "2024-12-13T12:29:52",
"upload_time_iso_8601": "2024-12-13T12:29:52.521724Z",
"url": "https://files.pythonhosted.org/packages/f5/ef/0fc02f1fae504edf1c85e7742fe3adb126dad96d23feb7a35e92202942e3/fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ba1fb5beb667f7e06b5522b362788cb3c01163e4fc5ab35561029df2a61fe77c",
"md5": "44dbbe4e1a1cc87f30b92d172f5ab208",
"sha256": "e6ceb0635012814299a7002b08e9c82689025cef0a2145729d195b4ffb823e12"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "44dbbe4e1a1cc87f30b92d172f5ab208",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 393145,
"upload_time": "2024-12-13T12:29:35",
"upload_time_iso_8601": "2024-12-13T12:29:35.550411Z",
"url": "https://files.pythonhosted.org/packages/ba/1f/b5beb667f7e06b5522b362788cb3c01163e4fc5ab35561029df2a61fe77c/fuzzy_date-0.5.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "28d3159d91893604f2863e263e0862ef36ef6329e5ad500fde7f414478070a31",
"md5": "32e81a43d55b183b9ece7a51c6c74123",
"sha256": "fa2d07fbd367a7727d11f148fa4090d512090bf2c4fdb75947995031946b06d6"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "32e81a43d55b183b9ece7a51c6c74123",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 544548,
"upload_time": "2024-12-13T12:30:16",
"upload_time_iso_8601": "2024-12-13T12:30:16.654936Z",
"url": "https://files.pythonhosted.org/packages/28/d3/159d91893604f2863e263e0862ef36ef6329e5ad500fde7f414478070a31/fuzzy_date-0.5.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58fa1ab614a2c0fd7e62d34f552257d036f8c16234ad4c344d5a22ec5f626c14",
"md5": "5ead78271d8815b38150e00fa2c74295",
"sha256": "55b7b4dd1334f43c9023ef0972ed92f7f6c48f31a174528dcf598f9510d87074"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "5ead78271d8815b38150e00fa2c74295",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 635947,
"upload_time": "2024-12-13T12:30:37",
"upload_time_iso_8601": "2024-12-13T12:30:37.759816Z",
"url": "https://files.pythonhosted.org/packages/58/fa/1ab614a2c0fd7e62d34f552257d036f8c16234ad4c344d5a22ec5f626c14/fuzzy_date-0.5.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "10c85970e948e3fe8fc6dfeed2f139954e679c42e0ef78cf9d09a4d071e73a0e",
"md5": "9b3616971b96f23b1a987ff7c1d2f415",
"sha256": "dfd450b55ebe68fd5901f42c26399027ba585e4a7d53de25cc28f2542b1d7102"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "9b3616971b96f23b1a987ff7c1d2f415",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 566737,
"upload_time": "2024-12-13T12:30:55",
"upload_time_iso_8601": "2024-12-13T12:30:55.819456Z",
"url": "https://files.pythonhosted.org/packages/10/c8/5970e948e3fe8fc6dfeed2f139954e679c42e0ef78cf9d09a4d071e73a0e/fuzzy_date-0.5.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe12997f470b1f5fcd5b3d00775954b797c34d1b84c7e2a26900f28522f1faa6",
"md5": "331a3c91fb0901df116cf70161f08b87",
"sha256": "56d9392bc6365941b3742d5cf8419a457a9ba73c1c7b1ac5bb9f860e92023ac9"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "331a3c91fb0901df116cf70161f08b87",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 539263,
"upload_time": "2024-12-13T12:31:10",
"upload_time_iso_8601": "2024-12-13T12:31:10.516689Z",
"url": "https://files.pythonhosted.org/packages/fe/12/997f470b1f5fcd5b3d00775954b797c34d1b84c7e2a26900f28522f1faa6/fuzzy_date-0.5.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0599970344889f2552b3b5086e2f87648599cebf0a69b1948ad4d13de97837c6",
"md5": "86eec6c5669c498ed6b9104c206ef178",
"sha256": "cb03d0f1d0d43b9d685ba7ae27d162fecca76a1d3ea480807493cff11147cade"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "86eec6c5669c498ed6b9104c206ef178",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 367313,
"upload_time": "2024-12-13T12:28:28",
"upload_time_iso_8601": "2024-12-13T12:28:28.965443Z",
"url": "https://files.pythonhosted.org/packages/05/99/970344889f2552b3b5086e2f87648599cebf0a69b1948ad4d13de97837c6/fuzzy_date-0.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "36cea44bd740dd0a298b2b7e94402ab72c5b4bb1c3b6f988d89b02e541203205",
"md5": "0d107c3a4a7ef8e8f301800586c42645",
"sha256": "582865dcbcd36f7d9f293ffe924f62f8dc9b7a5691a9abba9cde1e5847c87790"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "0d107c3a4a7ef8e8f301800586c42645",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 374310,
"upload_time": "2024-12-13T12:28:45",
"upload_time_iso_8601": "2024-12-13T12:28:45.111834Z",
"url": "https://files.pythonhosted.org/packages/36/ce/a44bd740dd0a298b2b7e94402ab72c5b4bb1c3b6f988d89b02e541203205/fuzzy_date-0.5.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a99a19ddefb0dd96be1ec966428688bafab021484c94cd41c6cd8a91f9d9a532",
"md5": "0a25bd4ad39a924fa43990d354a6013d",
"sha256": "59f8099c12cd4b006482d11ba670882c953a5b6cef99777955a1d571020fb90b"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0a25bd4ad39a924fa43990d354a6013d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 413762,
"upload_time": "2024-12-13T12:29:04",
"upload_time_iso_8601": "2024-12-13T12:29:04.598926Z",
"url": "https://files.pythonhosted.org/packages/a9/9a/19ddefb0dd96be1ec966428688bafab021484c94cd41c6cd8a91f9d9a532/fuzzy_date-0.5.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1256e5d3e56f537e4a3ab68154c0033036a738ba13dfc6de48e9687ae89f3e51",
"md5": "2f05f27049ec272e12c6246fb168118d",
"sha256": "d066489beb6ad21ca6fd25605f746d0b025174f21956979025e993e39d548567"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2f05f27049ec272e12c6246fb168118d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 423693,
"upload_time": "2024-12-13T12:29:23",
"upload_time_iso_8601": "2024-12-13T12:29:23.111923Z",
"url": "https://files.pythonhosted.org/packages/12/56/e5d3e56f537e4a3ab68154c0033036a738ba13dfc6de48e9687ae89f3e51/fuzzy_date-0.5.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5ff9df9c39c892694278f52d8c5ba6ff4e3c21132dea783c1d35f7fc96e52ec",
"md5": "ace5eff78586b2e8281aa027f0a968bd",
"sha256": "f52716d8a77f3d7f4aad9b53c73d042022692d23f6f7cf4d51403ac7435377c1"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ace5eff78586b2e8281aa027f0a968bd",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 545113,
"upload_time": "2024-12-13T12:30:20",
"upload_time_iso_8601": "2024-12-13T12:30:20.283097Z",
"url": "https://files.pythonhosted.org/packages/a5/ff/9df9c39c892694278f52d8c5ba6ff4e3c21132dea783c1d35f7fc96e52ec/fuzzy_date-0.5.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1d75f008f53e70c9c0b696938d3f1ae971570e8b71e83026e703d85263ec73eb",
"md5": "974867fab1a209055339586108f19258",
"sha256": "4f99d461b88a07b156a6aa3591beb2c48ea414f9ec13e3e8646617570c1c139b"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "974867fab1a209055339586108f19258",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 636569,
"upload_time": "2024-12-13T12:30:39",
"upload_time_iso_8601": "2024-12-13T12:30:39.677434Z",
"url": "https://files.pythonhosted.org/packages/1d/75/f008f53e70c9c0b696938d3f1ae971570e8b71e83026e703d85263ec73eb/fuzzy_date-0.5.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "298efd4d826d2dbda7c84ddc7105b346de1135b2a77de543430a67593df02eac",
"md5": "7fb78cfbc391ad3abba1d93c78237ba1",
"sha256": "3b766bac8a701c74571320082d377542d6cd6731cf77199d429394098d3433b8"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7fb78cfbc391ad3abba1d93c78237ba1",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 568171,
"upload_time": "2024-12-13T12:30:57",
"upload_time_iso_8601": "2024-12-13T12:30:57.580630Z",
"url": "https://files.pythonhosted.org/packages/29/8e/fd4d826d2dbda7c84ddc7105b346de1135b2a77de543430a67593df02eac/fuzzy_date-0.5.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "735fe1fca2f56413528e814acc1f5a248095cbb972e1e47cf1b57ad15425dc57",
"md5": "5ea81bcf445c78808d6be36e13b7dffd",
"sha256": "fab58e596204cd3818c2de49eb41a61508264ef0f7f0e46e80827cc2ed5fe410"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "5ea81bcf445c78808d6be36e13b7dffd",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 539774,
"upload_time": "2024-12-13T12:31:12",
"upload_time_iso_8601": "2024-12-13T12:31:12.496464Z",
"url": "https://files.pythonhosted.org/packages/73/5f/e1fca2f56413528e814acc1f5a248095cbb972e1e47cf1b57ad15425dc57/fuzzy_date-0.5.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0491444d95840147e5785631dfc24d2b569c3c3155e96ab7773570eed279df70",
"md5": "10055455bd087ef50af76f7b1976e732",
"sha256": "0d22b6ed84b3c0b10702a0974a21444a0964ad704d222a41242f5ca216b98148"
},
"downloads": -1,
"filename": "fuzzy_date-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "10055455bd087ef50af76f7b1976e732",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 32631,
"upload_time": "2024-12-13T12:31:14",
"upload_time_iso_8601": "2024-12-13T12:31:14.110106Z",
"url": "https://files.pythonhosted.org/packages/04/91/444d95840147e5785631dfc24d2b569c3c3155e96ab7773570eed279df70/fuzzy_date-0.5.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-13 12:31:14",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "aldroid1",
"github_project": "fuzzy-date",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "fuzzy-date"
}