fuzzy-date


Namefuzzy-date JSON
Version 0.5.3 PyPI version JSON
download
home_pageNone
SummaryConvert various time strings into datetime objects
upload_time2025-01-22 13:35:14
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
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 `first`, `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 `first/last day of`, `first/last Monday of`

### Fixed

- Unix timestamp `@1680307200`
- Dates
    - Numeric `2023-04-01`, `20230401`, `04/01/2023`, `01.04.2023`
    - Textual `April 1st 2023`, `April 1 2023`, `1 April 2023`, `1. April 2023`
    - Combined `01-April-2023`, `April-01-2023`, `2023-April-01`
- Day and month
    - Textual `April 1st`, `April 1`, `1 April`, `1. April`, `1st of April`
    - With weekday `Sat, 1 April`, `Sat, 1st of April`, `Sat, April 1st`, `Sat, April 1`
- Month and year `April`, `April 2023`
- Datetime `2023-04-01T12:00:00`, `2023-04-01T12:00.410`
- Time of day `14:00:00`, `14:00:00.410`, `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/85/f5/f78a44e3b6b6cd1420574011c52e4ccd37910a9961bad0599ccf528901eb/fuzzy_date-0.5.3.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/)\n\u200e\n[![PyPI download month](https://img.shields.io/pypi/dm/fuzzy-date.svg?color=blue)](https://pypistats.org/packages/fuzzy-date)\n\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 `first`, `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 `first/last day of`, `first/last Monday of`\n\n### Fixed\n\n- Unix timestamp `@1680307200`\n- Dates\n    - Numeric `2023-04-01`, `20230401`, `04/01/2023`, `01.04.2023`\n    - Textual `April 1st 2023`, `April 1 2023`, `1 April 2023`, `1. April 2023`\n    - Combined `01-April-2023`, `April-01-2023`, `2023-April-01`\n- Day and month\n    - Textual `April 1st`, `April 1`, `1 April`, `1. April`, `1st of April`\n    - With weekday `Sat, 1 April`, `Sat, 1st of April`, `Sat, April 1st`, `Sat, April 1`\n- Month and year `April`, `April 2023`\n- Datetime `2023-04-01T12:00:00`, `2023-04-01T12:00.410`\n- Time of day `14:00:00`, `14:00:00.410`, `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.3",
    "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": "5dccf6c61fe218ee9ae427a67b3c9ab73e4b5b151838c75e0a0eea8e0faaa795",
                "md5": "4da522aab28129678f32e4e23ece3261",
                "sha256": "b367d5a79ac5cc7ec807d0a4c6924d52e185a5c5e27db3f9a1648d1fdca6b3c2"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4da522aab28129678f32e4e23ece3261",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 378169,
            "upload_time": "2025-01-22T13:32:57",
            "upload_time_iso_8601": "2025-01-22T13:32:57.787326Z",
            "url": "https://files.pythonhosted.org/packages/5d/cc/f6c61fe218ee9ae427a67b3c9ab73e4b5b151838c75e0a0eea8e0faaa795/fuzzy_date-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a88a776c7a2ade305f6817a6565a7d864ead9cf16054aef2435e4b4302ee640d",
                "md5": "47542db79567c69cfb300c3f0f2c243d",
                "sha256": "2437e219ed5050e20f085896ec135750d700389a64ecc057f5e74c67b7090461"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "47542db79567c69cfb300c3f0f2c243d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 389489,
            "upload_time": "2025-01-22T13:33:15",
            "upload_time_iso_8601": "2025-01-22T13:33:15.729076Z",
            "url": "https://files.pythonhosted.org/packages/a8/8a/776c7a2ade305f6817a6565a7d864ead9cf16054aef2435e4b4302ee640d/fuzzy_date-0.5.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "566223bb78ee9e25f55b42c41ab43367e1cdb3792ff9e19aa3dacd8e5bf70ad0",
                "md5": "7ae5bfda063bfceff23c31025e33ef50",
                "sha256": "9ee2766a089cf290b71cd0f44f8a721d014d92cf29239380e5d34d7b27c2d564"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7ae5bfda063bfceff23c31025e33ef50",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 441034,
            "upload_time": "2025-01-22T13:33:28",
            "upload_time_iso_8601": "2025-01-22T13:33:28.271346Z",
            "url": "https://files.pythonhosted.org/packages/56/62/23bb78ee9e25f55b42c41ab43367e1cdb3792ff9e19aa3dacd8e5bf70ad0/fuzzy_date-0.5.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbc64d85d8ab1dc192a3b6a062388c7f1e09452acd9a947b32e1b2dd4a08c7a3",
                "md5": "aa312bf06cf331ca828c519004e61f57",
                "sha256": "084cbbfbdd202673bb26290d5eba54f1d8fc2434872835bb4419b75745bdac8a"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "aa312bf06cf331ca828c519004e61f57",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 436053,
            "upload_time": "2025-01-22T13:33:42",
            "upload_time_iso_8601": "2025-01-22T13:33:42.849434Z",
            "url": "https://files.pythonhosted.org/packages/fb/c6/4d85d8ab1dc192a3b6a062388c7f1e09452acd9a947b32e1b2dd4a08c7a3/fuzzy_date-0.5.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a99659667abcb94be65805a746f23e7bf280b9bf0de2c19305b1cc5f2d890b4",
                "md5": "ab3bcde99b6e82be4330c680552c6c92",
                "sha256": "183f06aee06410937f887b6d05f9fef16bd8b087296d365c57f6b81b906a199a"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab3bcde99b6e82be4330c680552c6c92",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 380821,
            "upload_time": "2025-01-22T13:34:06",
            "upload_time_iso_8601": "2025-01-22T13:34:06.983191Z",
            "url": "https://files.pythonhosted.org/packages/1a/99/659667abcb94be65805a746f23e7bf280b9bf0de2c19305b1cc5f2d890b4/fuzzy_date-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1b3596960eb026c0af694aea46570219cbca2ee75fb169599622894821d8925",
                "md5": "b0818f4978bed116c49eca08f3b4b581",
                "sha256": "b19e4b30267ddb7e29bb5038488b38a858c8c830ab84ee09731476ea786ccb84"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b0818f4978bed116c49eca08f3b4b581",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 407927,
            "upload_time": "2025-01-22T13:33:55",
            "upload_time_iso_8601": "2025-01-22T13:33:55.464090Z",
            "url": "https://files.pythonhosted.org/packages/f1/b3/596960eb026c0af694aea46570219cbca2ee75fb169599622894821d8925/fuzzy_date-0.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7eb539eadb29398c5282fd8168f9de3b8ddbf74344198d4ef6d9fc22b5a8fac",
                "md5": "5cb630bd9909874877e784fbcd6d1a15",
                "sha256": "34870b9d2b0ce15b982025317c0356809f3f72ab214d7c69bb6d2e4320962401"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5cb630bd9909874877e784fbcd6d1a15",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 553402,
            "upload_time": "2025-01-22T13:34:24",
            "upload_time_iso_8601": "2025-01-22T13:34:24.994728Z",
            "url": "https://files.pythonhosted.org/packages/d7/eb/539eadb29398c5282fd8168f9de3b8ddbf74344198d4ef6d9fc22b5a8fac/fuzzy_date-0.5.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0a652e7b3c584e801a532c8235edf340a0249487796486f9fda7866f6e577a5",
                "md5": "9268d13daab94a33746399186f52c157",
                "sha256": "ecdb6281db56d8d5b34ed82353441de1a169cdc0cfc4c2035acf7a72ec8a6886"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9268d13daab94a33746399186f52c157",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 645137,
            "upload_time": "2025-01-22T13:34:36",
            "upload_time_iso_8601": "2025-01-22T13:34:36.873111Z",
            "url": "https://files.pythonhosted.org/packages/b0/a6/52e7b3c584e801a532c8235edf340a0249487796486f9fda7866f6e577a5/fuzzy_date-0.5.3-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0ba0a77ce8d136b75c2cd6f9049dbb5e4c46400392b2e1530eab924a56357d3",
                "md5": "ba41da195b53dffb8c204f0f7ee64749",
                "sha256": "9b1832929cfa80d24cc0daac48b273c51e24c2681f2e52ef79780e97c93c3c1b"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ba41da195b53dffb8c204f0f7ee64749",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 574974,
            "upload_time": "2025-01-22T13:34:49",
            "upload_time_iso_8601": "2025-01-22T13:34:49.319177Z",
            "url": "https://files.pythonhosted.org/packages/f0/ba/0a77ce8d136b75c2cd6f9049dbb5e4c46400392b2e1530eab924a56357d3/fuzzy_date-0.5.3-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "065e6fe1f0d9f1453fe6a4aba01edcaeda33993098dd14240b7b537232811225",
                "md5": "acc4b2b3be08d282b1b8b6f7ba558bae",
                "sha256": "d9c5fc495df001f95a07eaee25d61a7d501ccc2ea43afbfe8f7e6debaee7a62b"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "acc4b2b3be08d282b1b8b6f7ba558bae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 547343,
            "upload_time": "2025-01-22T13:35:01",
            "upload_time_iso_8601": "2025-01-22T13:35:01.440893Z",
            "url": "https://files.pythonhosted.org/packages/06/5e/6fe1f0d9f1453fe6a4aba01edcaeda33993098dd14240b7b537232811225/fuzzy_date-0.5.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e27b212c8f4ac1a807b153423f0b64cdddc9024760fbcccd625d072222caa49b",
                "md5": "638073f50369fff3f3c3bbff734a8629",
                "sha256": "d70a0831fd62b6f73030155585ea7fe5f59511897ad5198b22ca825656cb5815"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "638073f50369fff3f3c3bbff734a8629",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 216229,
            "upload_time": "2025-01-22T13:35:21",
            "upload_time_iso_8601": "2025-01-22T13:35:21.799230Z",
            "url": "https://files.pythonhosted.org/packages/e2/7b/212c8f4ac1a807b153423f0b64cdddc9024760fbcccd625d072222caa49b/fuzzy_date-0.5.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3e34bdae95ab982a26efc44267d186f7019cfc8c2a3087c8132b519f557335d",
                "md5": "168ce2b77a959f5c5b223e7b5133f896",
                "sha256": "76ff67aee57d2bc6ccac0218e3720019207dce0ce2f38508c2b23802d90a8faa"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "168ce2b77a959f5c5b223e7b5133f896",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 223467,
            "upload_time": "2025-01-22T13:35:16",
            "upload_time_iso_8601": "2025-01-22T13:35:16.497764Z",
            "url": "https://files.pythonhosted.org/packages/e3/e3/4bdae95ab982a26efc44267d186f7019cfc8c2a3087c8132b519f557335d/fuzzy_date-0.5.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9ea91643d3e7e9b896679f157ec7956a43efd312db0d38ea3deed3ae8c26c2a",
                "md5": "cf0f52b9b961414d95a6f360079b4c24",
                "sha256": "5a84203db3061966a4dba8289d5fecd96a4d236b4ee48ba062884b7f88daca66"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf0f52b9b961414d95a6f360079b4c24",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 346862,
            "upload_time": "2025-01-22T13:34:19",
            "upload_time_iso_8601": "2025-01-22T13:34:19.665183Z",
            "url": "https://files.pythonhosted.org/packages/d9/ea/91643d3e7e9b896679f157ec7956a43efd312db0d38ea3deed3ae8c26c2a/fuzzy_date-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88a2d05b67956b1632906646a1faab20b23792186b035c5e994a844ca0d759e7",
                "md5": "c2eb6b4194d1875a60a1447d2b9cb8e8",
                "sha256": "51ad57e9b925bbf069a69c33e7c69ac458812c528f61bed1f92f0bec1b8b2f82"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c2eb6b4194d1875a60a1447d2b9cb8e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 339500,
            "upload_time": "2025-01-22T13:34:15",
            "upload_time_iso_8601": "2025-01-22T13:34:15.848758Z",
            "url": "https://files.pythonhosted.org/packages/88/a2/d05b67956b1632906646a1faab20b23792186b035c5e994a844ca0d759e7/fuzzy_date-0.5.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54ad145ea6ef619db5754fd8afd1ed853f342b865d6aaadc06801b98a5f1796f",
                "md5": "10d24de5a9653aa5811ad20131bd5025",
                "sha256": "7d68c0940d310cbbc96e2c3be7abe3a3b47b4efb0d05857c948015b3d275eb9c"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "10d24de5a9653aa5811ad20131bd5025",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 378232,
            "upload_time": "2025-01-22T13:33:00",
            "upload_time_iso_8601": "2025-01-22T13:33:00.772811Z",
            "url": "https://files.pythonhosted.org/packages/54/ad/145ea6ef619db5754fd8afd1ed853f342b865d6aaadc06801b98a5f1796f/fuzzy_date-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be9d588a945634045c81849a1b83b1ffb03e0a01885fcdb3f1eb969179a971d1",
                "md5": "c7c4b2d5af407c0c1b4ce7ffe39fdacb",
                "sha256": "66be5455ea27f9021fa9fc035a333b582160b66126d4554e4008c606b27fbf50"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c7c4b2d5af407c0c1b4ce7ffe39fdacb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 389561,
            "upload_time": "2025-01-22T13:33:17",
            "upload_time_iso_8601": "2025-01-22T13:33:17.098667Z",
            "url": "https://files.pythonhosted.org/packages/be/9d/588a945634045c81849a1b83b1ffb03e0a01885fcdb3f1eb969179a971d1/fuzzy_date-0.5.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "404d598b32c34757df15b5524dc72ff4b843e93aeee44f7dca881bb1e8c6f979",
                "md5": "fe510fe8ca2256ce7bd94d5b8124b494",
                "sha256": "fa87c1a546365fd8c5dad73483caa912446dbb3f4c06a4f0d6f6e261f03fa139"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fe510fe8ca2256ce7bd94d5b8124b494",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 441041,
            "upload_time": "2025-01-22T13:33:30",
            "upload_time_iso_8601": "2025-01-22T13:33:30.612975Z",
            "url": "https://files.pythonhosted.org/packages/40/4d/598b32c34757df15b5524dc72ff4b843e93aeee44f7dca881bb1e8c6f979/fuzzy_date-0.5.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efe3b07281e43a23be8e6749202ab2458c70357c7a2d72cb40658749cfcbd4d5",
                "md5": "9a849dd8e74d1b0b9e684e7d6520db89",
                "sha256": "466b9537b9cbe2a546c3064892be734273957774508aaa8ee3b6ba073b75cbc9"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9a849dd8e74d1b0b9e684e7d6520db89",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 435686,
            "upload_time": "2025-01-22T13:33:44",
            "upload_time_iso_8601": "2025-01-22T13:33:44.214748Z",
            "url": "https://files.pythonhosted.org/packages/ef/e3/b07281e43a23be8e6749202ab2458c70357c7a2d72cb40658749cfcbd4d5/fuzzy_date-0.5.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a29684da18663f3339b54b881e63eb1f3b4efdf3c758df179f9e7f5e00321088",
                "md5": "2cdd668f1a5e72d5b1e813e63b1c5bd9",
                "sha256": "b427749f62e4b3e211031926303a694913d0cda096d2625b6c6baf29e5283d63"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2cdd668f1a5e72d5b1e813e63b1c5bd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 380636,
            "upload_time": "2025-01-22T13:34:08",
            "upload_time_iso_8601": "2025-01-22T13:34:08.462573Z",
            "url": "https://files.pythonhosted.org/packages/a2/96/84da18663f3339b54b881e63eb1f3b4efdf3c758df179f9e7f5e00321088/fuzzy_date-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a88a3521383e40dd42d708a938addbd03f6cab7a1528daf72608a3e1d017552f",
                "md5": "bcc150113e75cb7891b0bde25b2c051a",
                "sha256": "4f39abc3f9d1b64f7a7b10198d7d64e96f79643b192c985b466267de58a38509"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "bcc150113e75cb7891b0bde25b2c051a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 407171,
            "upload_time": "2025-01-22T13:33:56",
            "upload_time_iso_8601": "2025-01-22T13:33:56.754964Z",
            "url": "https://files.pythonhosted.org/packages/a8/8a/3521383e40dd42d708a938addbd03f6cab7a1528daf72608a3e1d017552f/fuzzy_date-0.5.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f766c141eff5985afecf64828fc3a12cecd75521f87e15cbf5f8201850f6c4f8",
                "md5": "d5c1e3c1833c9968b54d5109f2ac181f",
                "sha256": "40a6dcfa535ab4c0ad50e1c1b57664549033b4517a984f0a1863f21108c90e39"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d5c1e3c1833c9968b54d5109f2ac181f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 553425,
            "upload_time": "2025-01-22T13:34:26",
            "upload_time_iso_8601": "2025-01-22T13:34:26.221964Z",
            "url": "https://files.pythonhosted.org/packages/f7/66/c141eff5985afecf64828fc3a12cecd75521f87e15cbf5f8201850f6c4f8/fuzzy_date-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a0826c13c57bce7829f87f6005dd2fabfb5406090396066583ea6873ebbf837",
                "md5": "2b3e7e2c9d8ab47a2025c2dd1a0dcd16",
                "sha256": "63a83d90e83e7b219b17893f1ebffbd0937f48291e4900373dd7c73d22b3c70d"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2b3e7e2c9d8ab47a2025c2dd1a0dcd16",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 645676,
            "upload_time": "2025-01-22T13:34:38",
            "upload_time_iso_8601": "2025-01-22T13:34:38.230862Z",
            "url": "https://files.pythonhosted.org/packages/1a/08/26c13c57bce7829f87f6005dd2fabfb5406090396066583ea6873ebbf837/fuzzy_date-0.5.3-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a01c9d4b6b17ca736ab7720d35bd7567fb9b3cc8e9fd5ae8516b97a08e3b068a",
                "md5": "c06fc5e422d1c1e785854cef1d9981b7",
                "sha256": "79421a327713d7c612d995c10139a7c915ce109d9edea85804ed6ebd73cced86"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c06fc5e422d1c1e785854cef1d9981b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 575372,
            "upload_time": "2025-01-22T13:34:50",
            "upload_time_iso_8601": "2025-01-22T13:34:50.654796Z",
            "url": "https://files.pythonhosted.org/packages/a0/1c/9d4b6b17ca736ab7720d35bd7567fb9b3cc8e9fd5ae8516b97a08e3b068a/fuzzy_date-0.5.3-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4b4055cb2a764ccb404b4147c540b2bde678e28aa5e5b58ec37218ca6c5b317",
                "md5": "a62a7fdd9bad2894068e5f80b2432ca1",
                "sha256": "88b6fda79f08d74aebb9f87b25ae544ffd86cef68a35d3459399a4cc6ca6ed7e"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a62a7fdd9bad2894068e5f80b2432ca1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 547276,
            "upload_time": "2025-01-22T13:35:02",
            "upload_time_iso_8601": "2025-01-22T13:35:02.773056Z",
            "url": "https://files.pythonhosted.org/packages/f4/b4/055cb2a764ccb404b4147c540b2bde678e28aa5e5b58ec37218ca6c5b317/fuzzy_date-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "317fd2ad349f46beca49f532b5ed51c6613f55873dc262a660141ac0aef2ac7f",
                "md5": "23a84d56d4491ecb06c2479004623d4e",
                "sha256": "35d2b8d0f397ea46cb0f4c0421de8b9ca7b22026e010de37f29149065f0caba7"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "23a84d56d4491ecb06c2479004623d4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 216559,
            "upload_time": "2025-01-22T13:35:23",
            "upload_time_iso_8601": "2025-01-22T13:35:23.200402Z",
            "url": "https://files.pythonhosted.org/packages/31/7f/d2ad349f46beca49f532b5ed51c6613f55873dc262a660141ac0aef2ac7f/fuzzy_date-0.5.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39594bf93aaa0cb43ca67406d0452d797206a88616c7fa38a33f710418a88afe",
                "md5": "cb3ca44b35a4d86522732adfc00866c1",
                "sha256": "aebcfc997c2591f943594514e13f5d92c809cc9d6253b34538e1b08a076d9c51"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cb3ca44b35a4d86522732adfc00866c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 223637,
            "upload_time": "2025-01-22T13:35:18",
            "upload_time_iso_8601": "2025-01-22T13:35:18.028188Z",
            "url": "https://files.pythonhosted.org/packages/39/59/4bf93aaa0cb43ca67406d0452d797206a88616c7fa38a33f710418a88afe/fuzzy_date-0.5.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b151f9541e171c82970f36e12529b41ae123b5bc750a4d66c34be6ff38928502",
                "md5": "b4d38354edcf4fadb0b8f8b566be315e",
                "sha256": "391140edf84b0eb6a37aa6d0c623a2d7c75024dbae2c65d385a215989a3a1153"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4d38354edcf4fadb0b8f8b566be315e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 343018,
            "upload_time": "2025-01-22T13:34:22",
            "upload_time_iso_8601": "2025-01-22T13:34:22.305547Z",
            "url": "https://files.pythonhosted.org/packages/b1/51/f9541e171c82970f36e12529b41ae123b5bc750a4d66c34be6ff38928502/fuzzy_date-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a6bfb37dc5afaba36251f605f3ae5e8b7baab677a683a9f8367f04187d018df",
                "md5": "7dc21c52dc265ce8bed07d85ce076fec",
                "sha256": "155c425cf921bfd7b5d4495e27cef7b1f96a23e4cbe7566c9e883c68a2426294"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7dc21c52dc265ce8bed07d85ce076fec",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 336250,
            "upload_time": "2025-01-22T13:34:17",
            "upload_time_iso_8601": "2025-01-22T13:34:17.086641Z",
            "url": "https://files.pythonhosted.org/packages/1a/6b/fb37dc5afaba36251f605f3ae5e8b7baab677a683a9f8367f04187d018df/fuzzy_date-0.5.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "946fd8cdbb4f368310e620aaff47505fb0dd354ef4cbe9ecc7ea4f8a8030a7b4",
                "md5": "ffbbc7551e6b6b566b8fb9ba43df5da1",
                "sha256": "57125913876de8fc31f027beec2356311a098bff102763e13c18c20e8d59a805"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ffbbc7551e6b6b566b8fb9ba43df5da1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 377205,
            "upload_time": "2025-01-22T13:33:01",
            "upload_time_iso_8601": "2025-01-22T13:33:01.974738Z",
            "url": "https://files.pythonhosted.org/packages/94/6f/d8cdbb4f368310e620aaff47505fb0dd354ef4cbe9ecc7ea4f8a8030a7b4/fuzzy_date-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17bf9866aea5c37a42e86d1ea3f1dd86b6b7e2b9fac675ad58cf95fbea17b38f",
                "md5": "a138f6f71468aabcfc5b1a43190b22e7",
                "sha256": "12e5d76e6587e9f782da3964f42ff00e9258fdae0f1f58982026fa894c8a1110"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a138f6f71468aabcfc5b1a43190b22e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 387835,
            "upload_time": "2025-01-22T13:33:18",
            "upload_time_iso_8601": "2025-01-22T13:33:18.394564Z",
            "url": "https://files.pythonhosted.org/packages/17/bf/9866aea5c37a42e86d1ea3f1dd86b6b7e2b9fac675ad58cf95fbea17b38f/fuzzy_date-0.5.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82d9700faa6d2c060d650d3f9a5e245fd98293754d78d1c7cca24b6ef60117fa",
                "md5": "4b793074a9991b60005b15b439224cb6",
                "sha256": "9db3f071edc0c7b5dbda3f656036a81a7b0259fae023eb83c6fdb5f69e2d840e"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4b793074a9991b60005b15b439224cb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 440717,
            "upload_time": "2025-01-22T13:33:32",
            "upload_time_iso_8601": "2025-01-22T13:33:32.719622Z",
            "url": "https://files.pythonhosted.org/packages/82/d9/700faa6d2c060d650d3f9a5e245fd98293754d78d1c7cca24b6ef60117fa/fuzzy_date-0.5.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "002a4fde0a84883464d98cf05a633a7c9b80150d9e748990440d67f2aa4ef060",
                "md5": "4714734e3f53cbb82b42f468eab796bc",
                "sha256": "d82e3ceff0807c2c783d44f395836de7c14152df53c0cd97dec9545fd9c80118"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4714734e3f53cbb82b42f468eab796bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 434441,
            "upload_time": "2025-01-22T13:33:45",
            "upload_time_iso_8601": "2025-01-22T13:33:45.727727Z",
            "url": "https://files.pythonhosted.org/packages/00/2a/4fde0a84883464d98cf05a633a7c9b80150d9e748990440d67f2aa4ef060/fuzzy_date-0.5.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a32425287ae3d3a9c5a85d9d013e2d342963ae857001ad23d6ed689f55fa299",
                "md5": "d3e2155aafbc558eadf85ef5951a46b1",
                "sha256": "c0db80a1a2f98f2efd929260f8ed75715d58dff5e8820b14b6d685704ef4d0a8"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3e2155aafbc558eadf85ef5951a46b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 379277,
            "upload_time": "2025-01-22T13:34:09",
            "upload_time_iso_8601": "2025-01-22T13:34:09.966942Z",
            "url": "https://files.pythonhosted.org/packages/6a/32/425287ae3d3a9c5a85d9d013e2d342963ae857001ad23d6ed689f55fa299/fuzzy_date-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95d231dd23dc088e9afa9a98632afaf7b55faf7e1b59366fc6d042ba47f6b578",
                "md5": "63c8b60f92e86443311d8e0f779b8c20",
                "sha256": "0cb239e6ca379c45ee78a9272d577f630804694667013ea0dba1f98b4d42092f"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "63c8b60f92e86443311d8e0f779b8c20",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 406227,
            "upload_time": "2025-01-22T13:33:58",
            "upload_time_iso_8601": "2025-01-22T13:33:58.701687Z",
            "url": "https://files.pythonhosted.org/packages/95/d2/31dd23dc088e9afa9a98632afaf7b55faf7e1b59366fc6d042ba47f6b578/fuzzy_date-0.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "812351e11112fb2857618e3a360a4120a738a14beef5e280930b36fdb10d3ea8",
                "md5": "4bb96128c50864d59f0dc5170d300161",
                "sha256": "b5aa433a9013b3140814512027b44e518f1de728cdca4c55a136cbefb011f939"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4bb96128c50864d59f0dc5170d300161",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 552300,
            "upload_time": "2025-01-22T13:34:28",
            "upload_time_iso_8601": "2025-01-22T13:34:28.234561Z",
            "url": "https://files.pythonhosted.org/packages/81/23/51e11112fb2857618e3a360a4120a738a14beef5e280930b36fdb10d3ea8/fuzzy_date-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3636b0121f33642d765d7ffbafcf5dfd0623ffaa933b185d7b4ce51b6b6417e9",
                "md5": "56b5ad2961cbeef4d844d313f2450b0e",
                "sha256": "6e4300f24788f1e75e302e713d129900d8fe5e38e2b80ccdd720417fb5e51249"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "56b5ad2961cbeef4d844d313f2450b0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 644682,
            "upload_time": "2025-01-22T13:34:39",
            "upload_time_iso_8601": "2025-01-22T13:34:39.842924Z",
            "url": "https://files.pythonhosted.org/packages/36/36/b0121f33642d765d7ffbafcf5dfd0623ffaa933b185d7b4ce51b6b6417e9/fuzzy_date-0.5.3-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8906533b9a4c5f8990985ca3838c5b5532cc8d31b56f11be00a747762c629f9a",
                "md5": "f7de188221fced11fad8e35c30629fb5",
                "sha256": "fac8d0214b42b0920a6b3e737d86b06509fc8483dc79862e061c16b104492b11"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f7de188221fced11fad8e35c30629fb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 573160,
            "upload_time": "2025-01-22T13:34:51",
            "upload_time_iso_8601": "2025-01-22T13:34:51.926387Z",
            "url": "https://files.pythonhosted.org/packages/89/06/533b9a4c5f8990985ca3838c5b5532cc8d31b56f11be00a747762c629f9a/fuzzy_date-0.5.3-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a02503c6fbea467230b409bf4abc3030844340355f56b3ee5c36002c1ca1bb0",
                "md5": "29e8342f01f9caca0079a92fa539fb19",
                "sha256": "fbbfbd4d3a2e930a2d6fff0b1768d3879fbf2ceaaa4f9bd444988e08061448c7"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29e8342f01f9caca0079a92fa539fb19",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 545398,
            "upload_time": "2025-01-22T13:35:03",
            "upload_time_iso_8601": "2025-01-22T13:35:03.987768Z",
            "url": "https://files.pythonhosted.org/packages/9a/02/503c6fbea467230b409bf4abc3030844340355f56b3ee5c36002c1ca1bb0/fuzzy_date-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c11a6b7d077e8bde8bd5a67f3572637c06894986ab18d8eebfa3c50dc374034",
                "md5": "d88adefd48095812d02b4c4452816f29",
                "sha256": "ef41dbe45b1a0b53bd8708f7105e46d1304335ee494f21c9be1b0dedb18dbefc"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d88adefd48095812d02b4c4452816f29",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 215566,
            "upload_time": "2025-01-22T13:35:25",
            "upload_time_iso_8601": "2025-01-22T13:35:25.124109Z",
            "url": "https://files.pythonhosted.org/packages/7c/11/a6b7d077e8bde8bd5a67f3572637c06894986ab18d8eebfa3c50dc374034/fuzzy_date-0.5.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da6fd5aab13f589c2df60e03c447cfd911b715b3ae8570cfd7e3fa34aeb462b5",
                "md5": "b41891802b0659b1bc5ecc9a13f6ecec",
                "sha256": "f7b0e76c38cb003f61fcab3757f19e78cbb248bc6dcc60854bafbe13287c4c31"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b41891802b0659b1bc5ecc9a13f6ecec",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 222454,
            "upload_time": "2025-01-22T13:35:19",
            "upload_time_iso_8601": "2025-01-22T13:35:19.321525Z",
            "url": "https://files.pythonhosted.org/packages/da/6f/d5aab13f589c2df60e03c447cfd911b715b3ae8570cfd7e3fa34aeb462b5/fuzzy_date-0.5.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2b4767566717570d51304e72dead5e067cc7f7c14d47a0413613398c7e0ce1f",
                "md5": "ab713f6a403c6b20b91044a5f21d1555",
                "sha256": "acabf50fdbb9a430314e1fa5237ba7a90e407a029916b58f075f9774e3dda714"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab713f6a403c6b20b91044a5f21d1555",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 342427,
            "upload_time": "2025-01-22T13:34:23",
            "upload_time_iso_8601": "2025-01-22T13:34:23.610486Z",
            "url": "https://files.pythonhosted.org/packages/d2/b4/767566717570d51304e72dead5e067cc7f7c14d47a0413613398c7e0ce1f/fuzzy_date-0.5.3-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f41cb7a3faca740b0c9fb2f88589f2607217fc4362be40db2ef2375913312f0b",
                "md5": "7db35ff7015665f0baa74fae8b6f1ee2",
                "sha256": "55a3fa76a23f2a102185a0dd257f25e6578851b431340d319e4b0677d7d22a9a"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7db35ff7015665f0baa74fae8b6f1ee2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 335275,
            "upload_time": "2025-01-22T13:34:18",
            "upload_time_iso_8601": "2025-01-22T13:34:18.351473Z",
            "url": "https://files.pythonhosted.org/packages/f4/1c/b7a3faca740b0c9fb2f88589f2607217fc4362be40db2ef2375913312f0b/fuzzy_date-0.5.3-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22e577dc76a6ac5e3b3b8ee227b4e299d5640f1c52fa15e159858f401dffe444",
                "md5": "2035a1a9684e4218da2a14fcba231c88",
                "sha256": "90e7fa1b37291c802451dd767f6ffb6c9f4ec17f5e9e93d9846a66dc4ed5af72"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2035a1a9684e4218da2a14fcba231c88",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 376398,
            "upload_time": "2025-01-22T13:33:03",
            "upload_time_iso_8601": "2025-01-22T13:33:03.994434Z",
            "url": "https://files.pythonhosted.org/packages/22/e5/77dc76a6ac5e3b3b8ee227b4e299d5640f1c52fa15e159858f401dffe444/fuzzy_date-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95530d926373823d3ddde0977fae9e957ce67a58eaeb727a125d77f5b347f59a",
                "md5": "34371be6f8c29111a99964024ec0ea48",
                "sha256": "d25e17d7aa1e3ac32732469a819011b7ee84f354d75b9e156342886c1133d79e"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "34371be6f8c29111a99964024ec0ea48",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 388155,
            "upload_time": "2025-01-22T13:33:19",
            "upload_time_iso_8601": "2025-01-22T13:33:19.749846Z",
            "url": "https://files.pythonhosted.org/packages/95/53/0d926373823d3ddde0977fae9e957ce67a58eaeb727a125d77f5b347f59a/fuzzy_date-0.5.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6fefb7bf369393b0e9b2e56d3f05a17a38f6771045e2ac1b8591b70e393f6546",
                "md5": "f08e4395bee3d4bbd048a52b30b3bb0e",
                "sha256": "93736cc6a3eba6ad876a67cac595323564b34364027d15e5c54bea965367cdc8"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f08e4395bee3d4bbd048a52b30b3bb0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 440666,
            "upload_time": "2025-01-22T13:33:34",
            "upload_time_iso_8601": "2025-01-22T13:33:34.036959Z",
            "url": "https://files.pythonhosted.org/packages/6f/ef/b7bf369393b0e9b2e56d3f05a17a38f6771045e2ac1b8591b70e393f6546/fuzzy_date-0.5.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23a4cb194d8a8f148357f43ec27ce9f7a1aad67d3065fc77691876da601db1b4",
                "md5": "21fdfe9958fcd74d91ef9dbcfc4c93cf",
                "sha256": "a7bec114e336ac89c40fff0ef06329522f99ab0dcd51943b48000a3dce9b1d43"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "21fdfe9958fcd74d91ef9dbcfc4c93cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 434955,
            "upload_time": "2025-01-22T13:33:46",
            "upload_time_iso_8601": "2025-01-22T13:33:46.932475Z",
            "url": "https://files.pythonhosted.org/packages/23/a4/cb194d8a8f148357f43ec27ce9f7a1aad67d3065fc77691876da601db1b4/fuzzy_date-0.5.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03ff9926186d81939fbafaec9079a4abd63095a4104447934664af2f4709d7a3",
                "md5": "ebd4382dac2d421790dc3e67be69dda0",
                "sha256": "2048b650dc441d44042659f1ca9d0799fa9efe0afa3b617b64f30be7e41f81b1"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebd4382dac2d421790dc3e67be69dda0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 378990,
            "upload_time": "2025-01-22T13:34:11",
            "upload_time_iso_8601": "2025-01-22T13:34:11.110586Z",
            "url": "https://files.pythonhosted.org/packages/03/ff/9926186d81939fbafaec9079a4abd63095a4104447934664af2f4709d7a3/fuzzy_date-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efbba09c94e162d73b9f1678e14d91287f31a0773e3295461be72b0e2900458e",
                "md5": "e77ca32ca11129470d605f907231d0ec",
                "sha256": "f313453f76705c4a4ee1e797304aa392a4987c9bd87d9a08707379f695edb20f"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e77ca32ca11129470d605f907231d0ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 406333,
            "upload_time": "2025-01-22T13:34:02",
            "upload_time_iso_8601": "2025-01-22T13:34:02.977911Z",
            "url": "https://files.pythonhosted.org/packages/ef/bb/a09c94e162d73b9f1678e14d91287f31a0773e3295461be72b0e2900458e/fuzzy_date-0.5.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2faa71a906a7b6848f3319b4d74c69bd5f6aa6646f708d36cb6ee2f1cd3f5a65",
                "md5": "2c2c1e604648b687a90ed0fd0b54f678",
                "sha256": "701c322f7bce315a8610d06cd35e29fbd7cbccba09efa1553138e52a1bfbab6a"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2c2c1e604648b687a90ed0fd0b54f678",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 551609,
            "upload_time": "2025-01-22T13:34:29",
            "upload_time_iso_8601": "2025-01-22T13:34:29.579857Z",
            "url": "https://files.pythonhosted.org/packages/2f/aa/71a906a7b6848f3319b4d74c69bd5f6aa6646f708d36cb6ee2f1cd3f5a65/fuzzy_date-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e110835a34500fa68f2b34e4c392c36708168f4691e91e91c9515d7eaa12cabd",
                "md5": "2971fb2987b4457b6910cede0f26d19a",
                "sha256": "e2317b0683e5f4c98d6da62fe9ac9de3e22caaf36a353086e36b71d736341931"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2971fb2987b4457b6910cede0f26d19a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 644176,
            "upload_time": "2025-01-22T13:34:41",
            "upload_time_iso_8601": "2025-01-22T13:34:41.273737Z",
            "url": "https://files.pythonhosted.org/packages/e1/10/835a34500fa68f2b34e4c392c36708168f4691e91e91c9515d7eaa12cabd/fuzzy_date-0.5.3-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e947572f027b482534d65f734867ab63a24e6bb82365ab4647dd7a001142fdee",
                "md5": "6ecae76f1a4f8165411a7fd1fd6591e5",
                "sha256": "a69c14eac989d6b209c7396c7f43d0583fda887763e338a7a6338f3a748a3fa6"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6ecae76f1a4f8165411a7fd1fd6591e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 573114,
            "upload_time": "2025-01-22T13:34:53",
            "upload_time_iso_8601": "2025-01-22T13:34:53.298381Z",
            "url": "https://files.pythonhosted.org/packages/e9/47/572f027b482534d65f734867ab63a24e6bb82365ab4647dd7a001142fdee/fuzzy_date-0.5.3-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed26f3510265e85d95be7ea65aae73d088b26bf6fec59abe94dfb724321b85cd",
                "md5": "c65bdb7172d3137ef3785b514708ebdf",
                "sha256": "f3f007e9984679b8afb732adc0c634f6eb98672cb58d2670b17231aa7e9621b7"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c65bdb7172d3137ef3785b514708ebdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 545071,
            "upload_time": "2025-01-22T13:35:06",
            "upload_time_iso_8601": "2025-01-22T13:35:06.077619Z",
            "url": "https://files.pythonhosted.org/packages/ed/26/f3510265e85d95be7ea65aae73d088b26bf6fec59abe94dfb724321b85cd/fuzzy_date-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41aa4fde379438ef600de306c1b686b17151064f8bb8ce29b432b2123afe846b",
                "md5": "78d3b0ec53d2a36a57d63c942c162071",
                "sha256": "05ce566585853c8713638e6258ec4e3f020ff1da06900174fb0e58705a421d8c"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "78d3b0ec53d2a36a57d63c942c162071",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 376315,
            "upload_time": "2025-01-22T13:33:06",
            "upload_time_iso_8601": "2025-01-22T13:33:06.174652Z",
            "url": "https://files.pythonhosted.org/packages/41/aa/4fde379438ef600de306c1b686b17151064f8bb8ce29b432b2123afe846b/fuzzy_date-0.5.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1df55a456a98161c251dd951dbbccd18020c7376d459e58403fa84d66fd2e583",
                "md5": "2fe4e993c869f824440048e3be7619aa",
                "sha256": "574804f5c0386a418a0a25350f7bd5b14b4e31db5ceff2bb90d8734c3c1cd9c0"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2fe4e993c869f824440048e3be7619aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 386284,
            "upload_time": "2025-01-22T13:33:21",
            "upload_time_iso_8601": "2025-01-22T13:33:21.607288Z",
            "url": "https://files.pythonhosted.org/packages/1d/f5/5a456a98161c251dd951dbbccd18020c7376d459e58403fa84d66fd2e583/fuzzy_date-0.5.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "195062c76b781d4d906c460dfe1c71535c11a1f97f1c8be60af61e39c1a9fb57",
                "md5": "43eda4e1fbbae0d8eee1e3fe552d017a",
                "sha256": "3b0f3b0dda2ca26bcba317dad2d78da19a45d7b6769859608961c74eb580e746"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "43eda4e1fbbae0d8eee1e3fe552d017a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 440275,
            "upload_time": "2025-01-22T13:33:36",
            "upload_time_iso_8601": "2025-01-22T13:33:36.040709Z",
            "url": "https://files.pythonhosted.org/packages/19/50/62c76b781d4d906c460dfe1c71535c11a1f97f1c8be60af61e39c1a9fb57/fuzzy_date-0.5.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "120d44e2d42278e9188d6346a4773cf6a87cdc03e06816194e003fea556ca3a2",
                "md5": "65dd022d19a9b6c3f4b40e9f4cb9be2c",
                "sha256": "2f81fc39cac0dff45cce9d95fa0488457ab5340e306d782e40b4f9c1dc521abd"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "65dd022d19a9b6c3f4b40e9f4cb9be2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 433360,
            "upload_time": "2025-01-22T13:33:48",
            "upload_time_iso_8601": "2025-01-22T13:33:48.396734Z",
            "url": "https://files.pythonhosted.org/packages/12/0d/44e2d42278e9188d6346a4773cf6a87cdc03e06816194e003fea556ca3a2/fuzzy_date-0.5.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43a4fb7ba150ae39ba9a43eedd03699caf4cb21d5301d2b9366ac49473d86239",
                "md5": "2242ba2ec64a3503432241b6cde424e4",
                "sha256": "f768d597f0e7389da16d6bcdb0300a7604a4f28b5459c05107421740c7bf70bb"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2242ba2ec64a3503432241b6cde424e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 551424,
            "upload_time": "2025-01-22T13:34:30",
            "upload_time_iso_8601": "2025-01-22T13:34:30.840912Z",
            "url": "https://files.pythonhosted.org/packages/43/a4/fb7ba150ae39ba9a43eedd03699caf4cb21d5301d2b9366ac49473d86239/fuzzy_date-0.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf022ad879167e6d40e7d1a03e0ceeb9d208eee9b54dde45871482b868284eaf",
                "md5": "388914e002d04126df116a77d76eb884",
                "sha256": "f4745f0eb8ce8f5f2762741ad189e7abe17149666b175b63da0248fb56724b58"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "388914e002d04126df116a77d76eb884",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 642628,
            "upload_time": "2025-01-22T13:34:42",
            "upload_time_iso_8601": "2025-01-22T13:34:42.808221Z",
            "url": "https://files.pythonhosted.org/packages/bf/02/2ad879167e6d40e7d1a03e0ceeb9d208eee9b54dde45871482b868284eaf/fuzzy_date-0.5.3-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36bf92709fd879c054b8971b58f46ace0200877e2dcca83ae5d79b295b5de59f",
                "md5": "8ebee8746cd8798c86d14ecadd941bfd",
                "sha256": "872b485cff25418224febb79f61a8a7da0401296c965c7d94369450f677579fe"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8ebee8746cd8798c86d14ecadd941bfd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 572709,
            "upload_time": "2025-01-22T13:34:54",
            "upload_time_iso_8601": "2025-01-22T13:34:54.580744Z",
            "url": "https://files.pythonhosted.org/packages/36/bf/92709fd879c054b8971b58f46ace0200877e2dcca83ae5d79b295b5de59f/fuzzy_date-0.5.3-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15d9500e48dc2a70cf449530e2aec0dbab1d1aaf56d25bc19d499d9b4315a07e",
                "md5": "330f7d997ac90267987fa4630bc533bb",
                "sha256": "90ac32879f1012eda00d0071587f3399d6f54e937afc4f2cb5267beb9f9caba3"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "330f7d997ac90267987fa4630bc533bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 545427,
            "upload_time": "2025-01-22T13:35:07",
            "upload_time_iso_8601": "2025-01-22T13:35:07.266474Z",
            "url": "https://files.pythonhosted.org/packages/15/d9/500e48dc2a70cf449530e2aec0dbab1d1aaf56d25bc19d499d9b4315a07e/fuzzy_date-0.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4265d7a906d19786fd8d00150bd4ed75a7d1a2e55cfe820e1f0e5da7bfec05c8",
                "md5": "d898a30e1470a6389a8eb690939b2588",
                "sha256": "bfe04200fad74cd96dd3b01d2570575441f89a5cd2f9f788f471544ccee79af3"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d898a30e1470a6389a8eb690939b2588",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 378043,
            "upload_time": "2025-01-22T13:33:09",
            "upload_time_iso_8601": "2025-01-22T13:33:09.443539Z",
            "url": "https://files.pythonhosted.org/packages/42/65/d7a906d19786fd8d00150bd4ed75a7d1a2e55cfe820e1f0e5da7bfec05c8/fuzzy_date-0.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90fb415b3ce94bf7b13c0c335b72193e5e36ab24a68036052bb0fe762cc028c6",
                "md5": "270f394a5c9699943296a79cde901619",
                "sha256": "731ad735ade7cce16f0e7c71767518cd74bd5c8f15a23b7385fdca1e63a63670"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "270f394a5c9699943296a79cde901619",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 389543,
            "upload_time": "2025-01-22T13:33:23",
            "upload_time_iso_8601": "2025-01-22T13:33:23.539761Z",
            "url": "https://files.pythonhosted.org/packages/90/fb/415b3ce94bf7b13c0c335b72193e5e36ab24a68036052bb0fe762cc028c6/fuzzy_date-0.5.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49945fb3cd77af431c24e2b698b2d1b70160b8501de9555d20a4c3914b251938",
                "md5": "5f2ec282e70b19478043011d9db7cb51",
                "sha256": "bfc0005416826945cca85d2babe070fffd061e85ca658a5d2818dcc1d3d141fc"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5f2ec282e70b19478043011d9db7cb51",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 441764,
            "upload_time": "2025-01-22T13:33:37",
            "upload_time_iso_8601": "2025-01-22T13:33:37.390830Z",
            "url": "https://files.pythonhosted.org/packages/49/94/5fb3cd77af431c24e2b698b2d1b70160b8501de9555d20a4c3914b251938/fuzzy_date-0.5.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca0b8849884fed8deb89647d2624a1eddea186e8335c6234bac999b378d433e9",
                "md5": "f003ad8db5bb4ed0bfb239c515bf39b8",
                "sha256": "b2383834fab35bdb83c39db6f087f6abef8eaad2b92e55c5fc08774d9e08777f"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f003ad8db5bb4ed0bfb239c515bf39b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 435864,
            "upload_time": "2025-01-22T13:33:50",
            "upload_time_iso_8601": "2025-01-22T13:33:50.949181Z",
            "url": "https://files.pythonhosted.org/packages/ca/0b/8849884fed8deb89647d2624a1eddea186e8335c6234bac999b378d433e9/fuzzy_date-0.5.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "751baca9297ecb41eeb189200c9a26f4c7ae5ddd43f9fd664a053b095aaea3a8",
                "md5": "cce98dd8ee9fead9e069bbde451b7d48",
                "sha256": "cd88ba8d42cf494e80a23d42a57fb49ff0a218c18c8bbf4cf715e5a9d1151185"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cce98dd8ee9fead9e069bbde451b7d48",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 381050,
            "upload_time": "2025-01-22T13:34:12",
            "upload_time_iso_8601": "2025-01-22T13:34:12.451426Z",
            "url": "https://files.pythonhosted.org/packages/75/1b/aca9297ecb41eeb189200c9a26f4c7ae5ddd43f9fd664a053b095aaea3a8/fuzzy_date-0.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef7a543e8a7e1ab66e1f7b009456917e9fd2e185d73c9900a0ae2a1aa391b732",
                "md5": "11d1455893695e7a0e55855cb4e47db0",
                "sha256": "fdb72cedf926ff3818818b658cd26096a6a542a19cd8166575e9502b95f20494"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "11d1455893695e7a0e55855cb4e47db0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 407847,
            "upload_time": "2025-01-22T13:34:04",
            "upload_time_iso_8601": "2025-01-22T13:34:04.502331Z",
            "url": "https://files.pythonhosted.org/packages/ef/7a/543e8a7e1ab66e1f7b009456917e9fd2e185d73c9900a0ae2a1aa391b732/fuzzy_date-0.5.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0188499bc29ad63431623c0202fd4f8c487b5150336e3f922aa1bfa64ee0945d",
                "md5": "07362f2f72255c21ea32bab07cf442e5",
                "sha256": "a98c2e0035c3431ca778ca21a3d6885097b0a62e56485d90565669c5a1429706"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "07362f2f72255c21ea32bab07cf442e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 554338,
            "upload_time": "2025-01-22T13:34:32",
            "upload_time_iso_8601": "2025-01-22T13:34:32.078974Z",
            "url": "https://files.pythonhosted.org/packages/01/88/499bc29ad63431623c0202fd4f8c487b5150336e3f922aa1bfa64ee0945d/fuzzy_date-0.5.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5940a5fe92869ee9ebc5363b1d98baefeb3ac6c1a7e92faa3b698e18a605723",
                "md5": "f0f543a710ecd6214030d9225c86a351",
                "sha256": "cf12ee5010fcd4b18ae289580da7022e80baa7fdcd60e0ee18530aae7096f7a5"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f0f543a710ecd6214030d9225c86a351",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 644993,
            "upload_time": "2025-01-22T13:34:44",
            "upload_time_iso_8601": "2025-01-22T13:34:44.853215Z",
            "url": "https://files.pythonhosted.org/packages/c5/94/0a5fe92869ee9ebc5363b1d98baefeb3ac6c1a7e92faa3b698e18a605723/fuzzy_date-0.5.3-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ccdcbb68ba42cddb950f77b4ec0a26439464dd9368ebbb267bb190eb554bbc8",
                "md5": "648fae67e5010eca9a9c1d57a2d93cd4",
                "sha256": "ae51a28a81ac9e94f5deb2e094be24001302d12eb8d176de7f69d342fe136337"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "648fae67e5010eca9a9c1d57a2d93cd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 574984,
            "upload_time": "2025-01-22T13:34:55",
            "upload_time_iso_8601": "2025-01-22T13:34:55.770044Z",
            "url": "https://files.pythonhosted.org/packages/2c/cd/cbb68ba42cddb950f77b4ec0a26439464dd9368ebbb267bb190eb554bbc8/fuzzy_date-0.5.3-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e993572a07b61e76f5db4b68673792edff6164b3f6e848110a479c8dca01a44e",
                "md5": "9c85a815ba81ecefd7e1afd2b8c8052b",
                "sha256": "dccb2d865c46e7721f33acefb027c6f8e08cae5d797be0590076838fcdd627cc"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c85a815ba81ecefd7e1afd2b8c8052b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 548274,
            "upload_time": "2025-01-22T13:35:09",
            "upload_time_iso_8601": "2025-01-22T13:35:09.392031Z",
            "url": "https://files.pythonhosted.org/packages/e9/93/572a07b61e76f5db4b68673792edff6164b3f6e848110a479c8dca01a44e/fuzzy_date-0.5.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a3273a50631845f41907f6b837f6c0a83a42cccccfbacad0781e5efee8965ee",
                "md5": "c18a207eeb9d784beba581a3569e4b3e",
                "sha256": "0ee1c37f50f4e1455a8d8f25f17ffcd052c252e75238e17696bfeb5ef5912271"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "c18a207eeb9d784beba581a3569e4b3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 216119,
            "upload_time": "2025-01-22T13:35:26",
            "upload_time_iso_8601": "2025-01-22T13:35:26.803855Z",
            "url": "https://files.pythonhosted.org/packages/7a/32/73a50631845f41907f6b837f6c0a83a42cccccfbacad0781e5efee8965ee/fuzzy_date-0.5.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5ce0f474f70338231802d1236fd5912ccc7129b965774b0c91f0bece21ba69f",
                "md5": "f63cdaa056501514309b1506cd4e7e62",
                "sha256": "230024c5e9108f1c73e0c4f37486ea47e4f0e657fc040f1a5f827f704d9eee2d"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f63cdaa056501514309b1506cd4e7e62",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 223647,
            "upload_time": "2025-01-22T13:35:20",
            "upload_time_iso_8601": "2025-01-22T13:35:20.633333Z",
            "url": "https://files.pythonhosted.org/packages/f5/ce/0f474f70338231802d1236fd5912ccc7129b965774b0c91f0bece21ba69f/fuzzy_date-0.5.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88765f0fb3dc8b399fefde8524f822083d2f60f57e8617dcd87978d0993f6389",
                "md5": "0ccb47bfa8c39a1f3d63429eceba5802",
                "sha256": "bf514e0051e8adcef4bdcd5a35ab2a9bdfb8d93f7ead093b436e55c62ad34d95"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0ccb47bfa8c39a1f3d63429eceba5802",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 380289,
            "upload_time": "2025-01-22T13:33:12",
            "upload_time_iso_8601": "2025-01-22T13:33:12.435246Z",
            "url": "https://files.pythonhosted.org/packages/88/76/5f0fb3dc8b399fefde8524f822083d2f60f57e8617dcd87978d0993f6389/fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73503f5cc4c1dfa3b1d59f4c9651a9fdcf1ce0ba5a44bcfae3226ba5d54e44ac",
                "md5": "a1a1205e103ba479840c2b5b9a4f3286",
                "sha256": "10b5a144c244b6557e01d186498213a66e1b20c01dd9a4c5b0b79e9d93117995"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a1a1205e103ba479840c2b5b9a4f3286",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 392649,
            "upload_time": "2025-01-22T13:33:24",
            "upload_time_iso_8601": "2025-01-22T13:33:24.890301Z",
            "url": "https://files.pythonhosted.org/packages/73/50/3f5cc4c1dfa3b1d59f4c9651a9fdcf1ce0ba5a44bcfae3226ba5d54e44ac/fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da5905310aadd99c37f5492d2bc45efb6731efb5954beb5ef1b598ca795c0582",
                "md5": "440d44c44454376e8a1709c882d21ca4",
                "sha256": "4faf467e550745824787461cbead21386686fbd6f22dd19acaaf4c0f56157990"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "440d44c44454376e8a1709c882d21ca4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 443683,
            "upload_time": "2025-01-22T13:33:39",
            "upload_time_iso_8601": "2025-01-22T13:33:39.697699Z",
            "url": "https://files.pythonhosted.org/packages/da/59/05310aadd99c37f5492d2bc45efb6731efb5954beb5ef1b598ca795c0582/fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed26fba707f770dbfb1ff7ba8bc5b27ce763b5909ca74c483c07c2c5fbcbb173",
                "md5": "429d8246438f773b1b4f48ab35b090bf",
                "sha256": "d436e0f5332adf30f8596f1734eab440b7073001dfb5cac22895cfc1a0cf6592"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "429d8246438f773b1b4f48ab35b090bf",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 438099,
            "upload_time": "2025-01-22T13:33:53",
            "upload_time_iso_8601": "2025-01-22T13:33:53.121051Z",
            "url": "https://files.pythonhosted.org/packages/ed/26/fba707f770dbfb1ff7ba8bc5b27ce763b5909ca74c483c07c2c5fbcbb173/fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88731c7d8ccf1d794d59984724c972cec9db974a27fd35eb5d1ae4564fdc9880",
                "md5": "bd6fa376066b309165eb1bf7c81efeec",
                "sha256": "75fc61ca3f3e5e7699fdb5934ae2db9c05b0cf68685bdb7432c07ed0eb191613"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd6fa376066b309165eb1bf7c81efeec",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 383095,
            "upload_time": "2025-01-22T13:34:14",
            "upload_time_iso_8601": "2025-01-22T13:34:14.595669Z",
            "url": "https://files.pythonhosted.org/packages/88/73/1c7d8ccf1d794d59984724c972cec9db974a27fd35eb5d1ae4564fdc9880/fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "321718648ced5a99e4abbbdb0a6ac63273e72307ab06064cc76603876e351c39",
                "md5": "b424c026773231182675baaed8549e03",
                "sha256": "01cec569e4b4ed8b1dc55aa2d15a5aa2fdabac2af590d1a3afefa4cd3ae3caf3"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b424c026773231182675baaed8549e03",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 409900,
            "upload_time": "2025-01-22T13:34:05",
            "upload_time_iso_8601": "2025-01-22T13:34:05.769419Z",
            "url": "https://files.pythonhosted.org/packages/32/17/18648ced5a99e4abbbdb0a6ac63273e72307ab06064cc76603876e351c39/fuzzy_date-0.5.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19b8cb744572a242417ed5062e53248b0ef22288f7812812785da3dc795e9e83",
                "md5": "e4f5dc3fd3d8d343f3c568a10bdf9358",
                "sha256": "fcfdddd7da0930144e66ba1072376609bd94d745510cfc642ab54b39c0bd1294"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e4f5dc3fd3d8d343f3c568a10bdf9358",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 555083,
            "upload_time": "2025-01-22T13:34:33",
            "upload_time_iso_8601": "2025-01-22T13:34:33.717059Z",
            "url": "https://files.pythonhosted.org/packages/19/b8/cb744572a242417ed5062e53248b0ef22288f7812812785da3dc795e9e83/fuzzy_date-0.5.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af75fc977dab52634186dc782d1403e9590315687402dc0d09e041d9f3c1f964",
                "md5": "cecc881fb1a5db8e81b0cd05634de1b4",
                "sha256": "bca7c33f8f53fed85419db54609e36e4da08be9661c7ee18ce58b0ebef81947d"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cecc881fb1a5db8e81b0cd05634de1b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 647302,
            "upload_time": "2025-01-22T13:34:46",
            "upload_time_iso_8601": "2025-01-22T13:34:46.278251Z",
            "url": "https://files.pythonhosted.org/packages/af/75/fc977dab52634186dc782d1403e9590315687402dc0d09e041d9f3c1f964/fuzzy_date-0.5.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "041b37b88f26a92e88d8a7f979851a5f14c7353ab6bab65ee50b4a255c289c1f",
                "md5": "fa3368a4ca6e25ebc2ca6ecc46969d3c",
                "sha256": "7705400c44f2e212135ee162304afe17123d73bf1dde35a9cc3864fb3468b9e1"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "fa3368a4ca6e25ebc2ca6ecc46969d3c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 577200,
            "upload_time": "2025-01-22T13:34:57",
            "upload_time_iso_8601": "2025-01-22T13:34:57.378990Z",
            "url": "https://files.pythonhosted.org/packages/04/1b/37b88f26a92e88d8a7f979851a5f14c7353ab6bab65ee50b4a255c289c1f/fuzzy_date-0.5.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65851ef5c28e743692dd7241345a69301cc5afc1b8dd1d0a7460183c363208c6",
                "md5": "e69706c78d31c3e0bb306075ce09675e",
                "sha256": "1e9b7f67d26dcfb91bcc7b3f9b7c292cfcd4889bc7ab374d5b9472fef5a6c23e"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e69706c78d31c3e0bb306075ce09675e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 549867,
            "upload_time": "2025-01-22T13:35:11",
            "upload_time_iso_8601": "2025-01-22T13:35:11.485218Z",
            "url": "https://files.pythonhosted.org/packages/65/85/1ef5c28e743692dd7241345a69301cc5afc1b8dd1d0a7460183c363208c6/fuzzy_date-0.5.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cb726745a1040f2e3e6de7a5397de3c248a456f2a7beb776d8cbff9a8f2d50c",
                "md5": "7fb154954952e010173c69f34b3cbfd9",
                "sha256": "46e9e634e74c977352ba74b1bc4614fd42f9833a7daa81c0ea7de9cde0da933d"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7fb154954952e010173c69f34b3cbfd9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 380090,
            "upload_time": "2025-01-22T13:33:13",
            "upload_time_iso_8601": "2025-01-22T13:33:13.818456Z",
            "url": "https://files.pythonhosted.org/packages/5c/b7/26745a1040f2e3e6de7a5397de3c248a456f2a7beb776d8cbff9a8f2d50c/fuzzy_date-0.5.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67f334261fbbdf92bd0b4b703949634de48168d9657e4873578a991f5a8e7e58",
                "md5": "8d36ed945b1ae4c4922cbf729ddb42ab",
                "sha256": "4a17b7451cbecf9770e79c9f28d43268e97f48632e17fde04c38d2679873453f"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8d36ed945b1ae4c4922cbf729ddb42ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 392315,
            "upload_time": "2025-01-22T13:33:26",
            "upload_time_iso_8601": "2025-01-22T13:33:26.159469Z",
            "url": "https://files.pythonhosted.org/packages/67/f3/34261fbbdf92bd0b4b703949634de48168d9657e4873578a991f5a8e7e58/fuzzy_date-0.5.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1bfa2edc5ea247a226d7f66ebfe8962ecc3d1462aae0ad389d3af910668fa706",
                "md5": "00c7f48d78308643f83cb34f12848e2c",
                "sha256": "371ba8db5a047c46d2d413dd3f48f06b9a62f465f177876d2dd02a59696aeff1"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "00c7f48d78308643f83cb34f12848e2c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 443944,
            "upload_time": "2025-01-22T13:33:41",
            "upload_time_iso_8601": "2025-01-22T13:33:41.373273Z",
            "url": "https://files.pythonhosted.org/packages/1b/fa/2edc5ea247a226d7f66ebfe8962ecc3d1462aae0ad389d3af910668fa706/fuzzy_date-0.5.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f86ba205ad96cf9a157b97f5c8e94e7cf67c9ccf1e9bc8962f92c5a5073cde64",
                "md5": "dcfef82a0fa05671893718af8e9a4e2e",
                "sha256": "06a1289bb0dd3bb5c0ea96a0228e092b451d00da33ff34ce2bc308b0e2843951"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "dcfef82a0fa05671893718af8e9a4e2e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 438523,
            "upload_time": "2025-01-22T13:33:54",
            "upload_time_iso_8601": "2025-01-22T13:33:54.240255Z",
            "url": "https://files.pythonhosted.org/packages/f8/6b/a205ad96cf9a157b97f5c8e94e7cf67c9ccf1e9bc8962f92c5a5073cde64/fuzzy_date-0.5.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a630624bb91d676952680f4e22588d5c9a3ef939fd3ff22868f61778a4f1ab00",
                "md5": "08ccc78ab9bcc448c3f00e8b62e9c14e",
                "sha256": "fc04744c6bd34717a3ccb3a1dc7c1620a057d51da6c41f7d10f57246098ef779"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "08ccc78ab9bcc448c3f00e8b62e9c14e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 555257,
            "upload_time": "2025-01-22T13:34:35",
            "upload_time_iso_8601": "2025-01-22T13:34:35.684801Z",
            "url": "https://files.pythonhosted.org/packages/a6/30/624bb91d676952680f4e22588d5c9a3ef939fd3ff22868f61778a4f1ab00/fuzzy_date-0.5.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e4dc75fdd560ac9b15e4937f03bab1e600b61f2eb829cc05f5c82a28fc97705",
                "md5": "e246d109aba1c790c12aad50120ea4fb",
                "sha256": "f474ee4e2ecc56c4bd17beade10a23d3fba1f7e3adbe4950ca83fb9e4ca5daa2"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e246d109aba1c790c12aad50120ea4fb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 647277,
            "upload_time": "2025-01-22T13:34:47",
            "upload_time_iso_8601": "2025-01-22T13:34:47.583038Z",
            "url": "https://files.pythonhosted.org/packages/8e/4d/c75fdd560ac9b15e4937f03bab1e600b61f2eb829cc05f5c82a28fc97705/fuzzy_date-0.5.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bd361548d3de673e992cddfc66fe7936b60e29ba73a31cadfc56a3645fe2674",
                "md5": "ea21328652fb71416b4911bca6924285",
                "sha256": "3746e10aed8e077d1498981a685dd9b36649ffbbb2da765c552bee3ea9c2369c"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ea21328652fb71416b4911bca6924285",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 576804,
            "upload_time": "2025-01-22T13:34:59",
            "upload_time_iso_8601": "2025-01-22T13:34:59.470251Z",
            "url": "https://files.pythonhosted.org/packages/5b/d3/61548d3de673e992cddfc66fe7936b60e29ba73a31cadfc56a3645fe2674/fuzzy_date-0.5.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ce6aae8f8d789df6d4a576e8f6e6119a2ddd3f4c90f1c6b485944028b809df3",
                "md5": "1d9f646bce96043d988877696686e515",
                "sha256": "3325e149347af27e90b119be3d022c506a5d237f81521c8827685823df5fd83e"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d9f646bce96043d988877696686e515",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 549636,
            "upload_time": "2025-01-22T13:35:13",
            "upload_time_iso_8601": "2025-01-22T13:35:13.415702Z",
            "url": "https://files.pythonhosted.org/packages/9c/e6/aae8f8d789df6d4a576e8f6e6119a2ddd3f4c90f1c6b485944028b809df3/fuzzy_date-0.5.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85f5f78a44e3b6b6cd1420574011c52e4ccd37910a9961bad0599ccf528901eb",
                "md5": "f7a3783f6ee0c23de99039392920ad54",
                "sha256": "04d2b113787df456eb4adc5fe9b138c8c2e3a28c89fa45559efd41c6d11e1973"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.5.3.tar.gz",
            "has_sig": false,
            "md5_digest": "f7a3783f6ee0c23de99039392920ad54",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 37351,
            "upload_time": "2025-01-22T13:35:14",
            "upload_time_iso_8601": "2025-01-22T13:35:14.788906Z",
            "url": "https://files.pythonhosted.org/packages/85/f5/f78a44e3b6b6cd1420574011c52e4ccd37910a9961bad0599ccf528901eb/fuzzy_date-0.5.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-22 13:35: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"
}
        
Elapsed time: 0.87811s