fuzzy-date


Namefuzzy-date JSON
Version 0.4.0 PyPI version JSON
download
home_pageNone
SummaryConvert various time strings into datetime objects
upload_time2024-11-04 10:15:21
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
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

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('-1 week')                # 2023-03-25 12:00:00+00:00
fd.to_datetime('last week midnight')     # 2023-03-20 00:00:00+00:00
fd.to_datetime('-1d 2h 5min 10s')        # 2023-03-31 09:54:50+00:00
fd.to_datetime('tomorrow')               # 2023-04-02 00:00:00+00:00
fd.to_datetime('prev Monday')            # 2023-03-27 00:00:00+00:00
fd.to_datetime('last day of this month') # 2023-04-30 00:00:00+00:00

# Anything invalid raises a ValueError

fd.to_datetime('next Summer')
# ValueError: Unable to convert "next Summer" into datetime
```

## Time duration

### Duration seconds

```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.8

## Installation

```
pip install fuzzy-date 
```

## Syntax support

### Special

- Date `now`, `today`, `tomorrow`, `yesterday`
- Time of day `midnight`

### Relative

- Adjustment `last`, `prev`, `this`, `next` or `+`, `-`
- Units `next week`, `next month`, `next year`
- Weekdays `next Mon`, `next Monday`
- Numeric `(s)ec`, `min`, `(h)r`, `(d)ay`, `(w)eek`, `(m)onth`, `(y)ear`
- Ranges `last/first day of`

### Fixed

- Unix timestamp `@1680307200`
- Dates `2023-04-01`, `04/01/2023`, `01.04.2023`
- Textual dates `April 1st 2023`, `April 1 2023`, `1 April 2023`
- Day and month `April 1st`, `April 1`, `1 April`
- Datetime formats `2023-04-01 12:00`, `2023-04-01 12:00:00`
- Time of day `2pm`, `2:00 pm`

## Methods

### Conversion

```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 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.8",
    "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/32/4e/0d3460202363b83cfb71442b107568b3860d9449d4d7076aed5489b27b77/fuzzy_date-0.4.0.tar.gz",
    "platform": null,
    "description": "# fuzzy-date\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('-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('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.8\n\n## Installation\n\n```\npip install fuzzy-date \n```\n\n## Syntax support\n\n### Special\n\n- Date `now`, `today`, `tomorrow`, `yesterday`\n- Time of day `midnight`\n\n### Relative\n\n- Adjustment `last`, `prev`, `this`, `next` or `+`, `-`\n- Units `next week`, `next month`, `next year`\n- Weekdays `next Mon`, `next Monday`\n- Numeric `(s)ec`, `min`, `(h)r`, `(d)ay`, `(w)eek`, `(m)onth`, `(y)ear`\n- Ranges `last/first day of`\n\n### Fixed\n\n- Unix timestamp `@1680307200`\n- Dates `2023-04-01`, `04/01/2023`, `01.04.2023`\n- Textual dates `April 1st 2023`, `April 1 2023`, `1 April 2023`\n- Day and month `April 1st`, `April 1`, `1 April`\n- Datetime formats `2023-04-01 12:00`, `2023-04-01 12:00:00`\n- Time of day `2pm`, `2:00 pm`\n\n## Methods\n\n### Conversion\n\n```python\nfuzzydate.to_date(\n    source: str,\n    today: datetime.date = None,\n    weekday_start_mon: bool = True) -> datetime.date\n\nfuzzydate.to_datetime(\n    source: str,\n    now: datetime.datetime = None,\n    weekday_start_mon: bool = True) -> datetime.datetime\n    \nfuzzydate.to_duration(\n    seconds: float, \n    units: str = None, \n    max: str = 'w', \n    min: str = 's') -> str\n    \nfuzzydate.to_seconds(\n    source: str) -> float\n```\n\n### Configuration\n\n```python\n# Read-only\nfuzzydate.config.patterns: dict[str, str]\nfuzzydate.config.tokens: dict[str, int]\n\n# Read-write\nfuzzydate.config.units: dict[str, str]\nfuzzydate.config.units_long: dict[str, str]\nfuzzydate.config.units_short: dict[str, str]\n\nfuzzydate.config.add_patterns(\n    tokens: dict[str, str]) -> None\n\nfuzzydate.config.add_tokens(\n    tokens: dict[str, int]) -> None\n```\n\n## Background\n\nThis library was born out of the need to accept various user inputs for date range start and end\ntimes, to convert user time tracking entries into exact durations etc. All very much alike to what\n[timelib](https://github.com/derickr/timelib) does.\n\nOther implementations are available, but I did find one that would have worked for me - usually they\nwere missing support for some key wording I needed, or handled user vagueness and timezones in a\ndifferent 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.4.0",
    "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": "f87eb318bd256b7736f2582c2b2ccbdaaba5043dcb4a2d7322743e26c96ca926",
                "md5": "00b8ed264287f921df27091a603bf817",
                "sha256": "026c232df7acca3766e4aed1e21cd87d8debee016782e3a089ac4cf5d6fc40a9"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "00b8ed264287f921df27091a603bf817",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 312752,
            "upload_time": "2024-11-04T10:14:26",
            "upload_time_iso_8601": "2024-11-04T10:14:26.372090Z",
            "url": "https://files.pythonhosted.org/packages/f8/7e/b318bd256b7736f2582c2b2ccbdaaba5043dcb4a2d7322743e26c96ca926/fuzzy_date-0.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7eb96bcae7ae8b42acb17818e1dbd8a15d6dc310a5298406891af943ffe3d5b0",
                "md5": "df394be937048c71695436eed94906b3",
                "sha256": "531f15de89678a2fcde602a46826e90bdf47a9b6c8f274ab1cb011b15c5bd8ad"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "df394be937048c71695436eed94906b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 357670,
            "upload_time": "2024-11-04T10:13:16",
            "upload_time_iso_8601": "2024-11-04T10:13:16.723632Z",
            "url": "https://files.pythonhosted.org/packages/7e/b9/6bcae7ae8b42acb17818e1dbd8a15d6dc310a5298406891af943ffe3d5b0/fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58e850e47e6a73a6512e7d1fa74a0875f860d61286927226f33d4ec720a069f2",
                "md5": "4ce1dced118e4bc20ccd696cca6212bf",
                "sha256": "6ff67b922ea93c3b0453b6c13075395c5aaf774e620e9f3fb16e4f2a9a847ca6"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4ce1dced118e4bc20ccd696cca6212bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 361996,
            "upload_time": "2024-11-04T10:13:31",
            "upload_time_iso_8601": "2024-11-04T10:13:31.020054Z",
            "url": "https://files.pythonhosted.org/packages/58/e8/50e47e6a73a6512e7d1fa74a0875f860d61286927226f33d4ec720a069f2/fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f0624c315a6bda0d1551f026002dd3643822225ba1f29698f7d1771582fed14",
                "md5": "b1344920fb3c099025b3cad1ce9d27f8",
                "sha256": "34ba9af2cb5c8cd3d01223be2ffc71fa519ae143c14ae477d13f52aaace0c257"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b1344920fb3c099025b3cad1ce9d27f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 400665,
            "upload_time": "2024-11-04T10:13:43",
            "upload_time_iso_8601": "2024-11-04T10:13:43.995675Z",
            "url": "https://files.pythonhosted.org/packages/2f/06/24c315a6bda0d1551f026002dd3643822225ba1f29698f7d1771582fed14/fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a7eb80750eae4275a1a3e040f6ea9aae1350e152f32f2077140b23cad575d3f",
                "md5": "0ab31af9b6342019ab0d9bb61b2c38d5",
                "sha256": "4befb794e70e28350cb6c249b54042bf13f71cd4df56f1b000f330d1184926fa"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0ab31af9b6342019ab0d9bb61b2c38d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 413068,
            "upload_time": "2024-11-04T10:13:55",
            "upload_time_iso_8601": "2024-11-04T10:13:55.974274Z",
            "url": "https://files.pythonhosted.org/packages/2a/7e/b80750eae4275a1a3e040f6ea9aae1350e152f32f2077140b23cad575d3f/fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a332df42ebe412ee908728257a0a382aff4c4eb7d493fc3a90fc18b311970feb",
                "md5": "c5769c840da018bbafefa0ad61ed23d1",
                "sha256": "ef5c1beb7666d742072a2e4888b13e146d368da461329ca876154a002edc4423"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5769c840da018bbafefa0ad61ed23d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 359957,
            "upload_time": "2024-11-04T10:14:17",
            "upload_time_iso_8601": "2024-11-04T10:14:17.807555Z",
            "url": "https://files.pythonhosted.org/packages/a3/32/df42ebe412ee908728257a0a382aff4c4eb7d493fc3a90fc18b311970feb/fuzzy_date-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "985e7f6fbbb52b2e843aabf43ae426612ff7cd27d277f6968eb9299b83cf5bdd",
                "md5": "51e3cfe99a01befae9dc5662e1cca79d",
                "sha256": "dbbecf604dc280c29e8383b5f8734bd26ec19a1190463d2bb3488141ff826a07"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "51e3cfe99a01befae9dc5662e1cca79d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 382410,
            "upload_time": "2024-11-04T10:14:08",
            "upload_time_iso_8601": "2024-11-04T10:14:08.573355Z",
            "url": "https://files.pythonhosted.org/packages/98/5e/7f6fbbb52b2e843aabf43ae426612ff7cd27d277f6968eb9299b83cf5bdd/fuzzy_date-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7c2d19498daeb48f976c96d0457a3f42cd78649af83aac01aaa90bbffd665ec",
                "md5": "1001c256fc1c0b3aec9cd97dc3d0a69b",
                "sha256": "29f952f8bf415d9f441cadf510409e189e3a400966e62be68b9ca7aebc87116e"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1001c256fc1c0b3aec9cd97dc3d0a69b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 541547,
            "upload_time": "2024-11-04T10:14:34",
            "upload_time_iso_8601": "2024-11-04T10:14:34.731820Z",
            "url": "https://files.pythonhosted.org/packages/a7/c2/d19498daeb48f976c96d0457a3f42cd78649af83aac01aaa90bbffd665ec/fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13bc3943a36ce1cde27040b8204cd66d47d9f50a308f28ceb2834ef63a7df953",
                "md5": "93462c715bed66cd65b69ee21172f65f",
                "sha256": "94af277872b52575721638f004730e2114cd26ea47af74fa45fafa2791133b63"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "93462c715bed66cd65b69ee21172f65f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 619889,
            "upload_time": "2024-11-04T10:14:47",
            "upload_time_iso_8601": "2024-11-04T10:14:47.596421Z",
            "url": "https://files.pythonhosted.org/packages/13/bc/3943a36ce1cde27040b8204cd66d47d9f50a308f28ceb2834ef63a7df953/fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ccf0131022dfa38aa64db9f346f2e2bc53be0298791da803c0aca13dbe4cd0c",
                "md5": "53d86a4424fc89c0826445e4b5b03d46",
                "sha256": "2db0376f2f803de03c652c1f7b0ceaf38afb050627ce63527f9b43f8ab24d2a2"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "53d86a4424fc89c0826445e4b5b03d46",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 546477,
            "upload_time": "2024-11-04T10:14:59",
            "upload_time_iso_8601": "2024-11-04T10:14:59.820173Z",
            "url": "https://files.pythonhosted.org/packages/3c/cf/0131022dfa38aa64db9f346f2e2bc53be0298791da803c0aca13dbe4cd0c/fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0fb348ba89f30aabfe8321a5fdead53c61e3a22666fe8edd8ae4f99b7151b6d5",
                "md5": "27ac77d6ecbc03d0c5036ea9633ea4f4",
                "sha256": "af68424a748b337ecd3348fc7d91b4e87b1a3d4f624b59ea4c299abf3ba842a5"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27ac77d6ecbc03d0c5036ea9633ea4f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 523243,
            "upload_time": "2024-11-04T10:15:10",
            "upload_time_iso_8601": "2024-11-04T10:15:10.931410Z",
            "url": "https://files.pythonhosted.org/packages/0f/b3/48ba89f30aabfe8321a5fdead53c61e3a22666fe8edd8ae4f99b7151b6d5/fuzzy_date-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93d2def19348407b77b9426be388a28392e92e4dc085bd52dfe2d1e3438ff7f5",
                "md5": "0e3f06f3a80e727ba1223b212964301d",
                "sha256": "9e0c2c866cddbb7982cd91e62f62c8ac3196f5ab0d098b0eec88b9e66fe815aa"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "0e3f06f3a80e727ba1223b212964301d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 198027,
            "upload_time": "2024-11-04T10:15:28",
            "upload_time_iso_8601": "2024-11-04T10:15:28.860581Z",
            "url": "https://files.pythonhosted.org/packages/93/d2/def19348407b77b9426be388a28392e92e4dc085bd52dfe2d1e3438ff7f5/fuzzy_date-0.4.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6408a6dc44c7672e7fc0e417a3577ea45ac89b29d556dba4c855cfdec83d6822",
                "md5": "464ef456ec32dbd05eb99ba046fdf620",
                "sha256": "a6a8736bb778870bf2e2b480171050508946b5b640de5fea0871eb46d7267620"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "464ef456ec32dbd05eb99ba046fdf620",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 210980,
            "upload_time": "2024-11-04T10:15:22",
            "upload_time_iso_8601": "2024-11-04T10:15:22.330324Z",
            "url": "https://files.pythonhosted.org/packages/64/08/a6dc44c7672e7fc0e417a3577ea45ac89b29d556dba4c855cfdec83d6822/fuzzy_date-0.4.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5540cab539cca980c54d24dff32b8fbd675ef7df3e0a47b2303734ada3c484f5",
                "md5": "f6439d8fc807ce42f077b62c088b71a0",
                "sha256": "a494844d4d4af7bbfab2d9467de89c7acfb23e8d4fcb37020653cd3bc9190c2c"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f6439d8fc807ce42f077b62c088b71a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 319164,
            "upload_time": "2024-11-04T10:14:32",
            "upload_time_iso_8601": "2024-11-04T10:14:32.211993Z",
            "url": "https://files.pythonhosted.org/packages/55/40/cab539cca980c54d24dff32b8fbd675ef7df3e0a47b2303734ada3c484f5/fuzzy_date-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4752f8fefb168d391cf562b5fe0486bb32293004d980b26e8b24b93a0df302a4",
                "md5": "06c5f38d9d138d3bf2379b89126206b1",
                "sha256": "45442d413fa5a8255e64b90a493fea04cb8682793c0ced43505912661e73adfc"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "06c5f38d9d138d3bf2379b89126206b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 312711,
            "upload_time": "2024-11-04T10:14:27",
            "upload_time_iso_8601": "2024-11-04T10:14:27.531605Z",
            "url": "https://files.pythonhosted.org/packages/47/52/f8fefb168d391cf562b5fe0486bb32293004d980b26e8b24b93a0df302a4/fuzzy_date-0.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e91549be3bac8ca313670ac37c194b02d5cc019b2d4d64e6561130704010b54",
                "md5": "8716b104d36d00f11444e2196deb3d78",
                "sha256": "f30aec95122d8ab5a00eefc60e6ccca8345fd92dd4b95f275efb324d221014ef"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8716b104d36d00f11444e2196deb3d78",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 356865,
            "upload_time": "2024-11-04T10:13:19",
            "upload_time_iso_8601": "2024-11-04T10:13:19.460829Z",
            "url": "https://files.pythonhosted.org/packages/8e/91/549be3bac8ca313670ac37c194b02d5cc019b2d4d64e6561130704010b54/fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c90e1bcd9d6b225deeece4e66887c20b1d1034a573077a7a979249c5e8246298",
                "md5": "37aa01f208e640ab7c11c600ef0f2622",
                "sha256": "2d8891833a467efb9218f0aa165033f7439ffa790612cd3fadc4e75960980b10"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "37aa01f208e640ab7c11c600ef0f2622",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 362222,
            "upload_time": "2024-11-04T10:13:32",
            "upload_time_iso_8601": "2024-11-04T10:13:32.920623Z",
            "url": "https://files.pythonhosted.org/packages/c9/0e/1bcd9d6b225deeece4e66887c20b1d1034a573077a7a979249c5e8246298/fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a57bdbf0c34255472eebe82483d4d26c468d5cfcfee3efa0b40548b8a7f62f6",
                "md5": "2e1a2a562325143c9fb29d6674e04fe0",
                "sha256": "df7c3c7b83473fc03769d95ba7cdfd992e4a8912c8fba9151899f295086b444a"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2e1a2a562325143c9fb29d6674e04fe0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 400608,
            "upload_time": "2024-11-04T10:13:45",
            "upload_time_iso_8601": "2024-11-04T10:13:45.441744Z",
            "url": "https://files.pythonhosted.org/packages/0a/57/bdbf0c34255472eebe82483d4d26c468d5cfcfee3efa0b40548b8a7f62f6/fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6d56fa12ab9c93de024e978f06b1ddc4da898cabbce8706eb84690784ead68b",
                "md5": "0c81c7cac16317ced8e2f154545e6faf",
                "sha256": "483150b9d66de86362ac626ec5b8ad5ab936ae8ffddbc60a3e32a383b964ad6c"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0c81c7cac16317ced8e2f154545e6faf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 413203,
            "upload_time": "2024-11-04T10:13:57",
            "upload_time_iso_8601": "2024-11-04T10:13:57.210030Z",
            "url": "https://files.pythonhosted.org/packages/b6/d5/6fa12ab9c93de024e978f06b1ddc4da898cabbce8706eb84690784ead68b/fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef3d418c3b6fb8a3fa240dd85bba908348b2c8a29fd1a6e440e0b9c1fb733477",
                "md5": "f0bb52cc1443389664f183aa221c80c9",
                "sha256": "2db4416f63e6714b36248ccf14e8a59c41bbd1db4003d8969748669c60962d16"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0bb52cc1443389664f183aa221c80c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 359919,
            "upload_time": "2024-11-04T10:14:18",
            "upload_time_iso_8601": "2024-11-04T10:14:18.989183Z",
            "url": "https://files.pythonhosted.org/packages/ef/3d/418c3b6fb8a3fa240dd85bba908348b2c8a29fd1a6e440e0b9c1fb733477/fuzzy_date-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "198211a3c4ba7b732501c0bde1546d1138997b03e2f0dcc7f553947f170a6300",
                "md5": "4b47fafe4dbc286d3c6ffaf18e2ead51",
                "sha256": "f40083d3572cacd72d4cc67fc9b67da5d2fb72ff8c414ff8d002cbe1ec7a37cd"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "4b47fafe4dbc286d3c6ffaf18e2ead51",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 381966,
            "upload_time": "2024-11-04T10:14:09",
            "upload_time_iso_8601": "2024-11-04T10:14:09.847243Z",
            "url": "https://files.pythonhosted.org/packages/19/82/11a3c4ba7b732501c0bde1546d1138997b03e2f0dcc7f553947f170a6300/fuzzy_date-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c0874f1352ebd0269852f2aaad173f645b42fad58780e630ff67e4f6484d443",
                "md5": "c95e656d60ff439239835a3d6d4c94b2",
                "sha256": "399caf580a8988f1cfe856ab7271dbbd5723eba13080c208de1394b90fbd492b"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c95e656d60ff439239835a3d6d4c94b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 541237,
            "upload_time": "2024-11-04T10:14:35",
            "upload_time_iso_8601": "2024-11-04T10:14:35.899051Z",
            "url": "https://files.pythonhosted.org/packages/8c/08/74f1352ebd0269852f2aaad173f645b42fad58780e630ff67e4f6484d443/fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "387610b678e6c1435b24b4bc63cec4118039453e499aeef0c5255babd90acdef",
                "md5": "27594eec713e654de52d239102b5e5fb",
                "sha256": "a12121ce5c02c85d37577f47e3db678e2952627cd879960e1d0557c6d2f7ece6"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "27594eec713e654de52d239102b5e5fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 621339,
            "upload_time": "2024-11-04T10:14:49",
            "upload_time_iso_8601": "2024-11-04T10:14:49.599542Z",
            "url": "https://files.pythonhosted.org/packages/38/76/10b678e6c1435b24b4bc63cec4118039453e499aeef0c5255babd90acdef/fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "367813ea7de837057a88988c3f02789cfc066f956927867b00a693a34b9951d0",
                "md5": "7f5e4b5f48b27837492644a59aae1bbe",
                "sha256": "b0c1f04052581534b3d882e2f67ea52b54a912bcb3a0ae1d5308e93d915d98c3"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7f5e4b5f48b27837492644a59aae1bbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 545733,
            "upload_time": "2024-11-04T10:15:01",
            "upload_time_iso_8601": "2024-11-04T10:15:01.088535Z",
            "url": "https://files.pythonhosted.org/packages/36/78/13ea7de837057a88988c3f02789cfc066f956927867b00a693a34b9951d0/fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96b88040fa43befe5a56428f1371d8305652bc75de92b1607bea6bc0e2d7772d",
                "md5": "07347551bfa7b92f32d4b197dd859025",
                "sha256": "5fd8eb07519b360cb042597e061b2f2b98deb7a1d05e5203cb360fa93247e903"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07347551bfa7b92f32d4b197dd859025",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 523098,
            "upload_time": "2024-11-04T10:15:12",
            "upload_time_iso_8601": "2024-11-04T10:15:12.225687Z",
            "url": "https://files.pythonhosted.org/packages/96/b8/8040fa43befe5a56428f1371d8305652bc75de92b1607bea6bc0e2d7772d/fuzzy_date-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79f3a3a6710686b3c1c15846619ddc2d070b3361d62ef8f6cbdaa1e7a24793f4",
                "md5": "1a7d88bcc10b9aa5c1146fc73977b0af",
                "sha256": "3e56df6f42238b8a604df37dd85aca007a7f53a9a08c3b4a8d31bc8671ca4c86"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "1a7d88bcc10b9aa5c1146fc73977b0af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 197693,
            "upload_time": "2024-11-04T10:15:30",
            "upload_time_iso_8601": "2024-11-04T10:15:30.002202Z",
            "url": "https://files.pythonhosted.org/packages/79/f3/a3a6710686b3c1c15846619ddc2d070b3361d62ef8f6cbdaa1e7a24793f4/fuzzy_date-0.4.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96beefd646dfbb7543bfc2a8b7a20710ffb50993c8a3d3224e6e0adfdbff4c72",
                "md5": "ba695d6933fb87394347f370a27cc2f4",
                "sha256": "336f1c772d58c9485221b1d2b7ba7b5b5861e8eaae43ff6caff08036cca244df"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ba695d6933fb87394347f370a27cc2f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 210946,
            "upload_time": "2024-11-04T10:15:24",
            "upload_time_iso_8601": "2024-11-04T10:15:24.053961Z",
            "url": "https://files.pythonhosted.org/packages/96/be/efd646dfbb7543bfc2a8b7a20710ffb50993c8a3d3224e6e0adfdbff4c72/fuzzy_date-0.4.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d61e1cfe2119740d06e8c185ebfd342db17eebbbbe514dc9762b0ce2cd16973",
                "md5": "d38e1d7ca6e604d4ef7e6e457f1f9bca",
                "sha256": "37832d76de6f447a27697e0cb71633a28c9670ef768b54b0f96c64d1b8788ea3"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d38e1d7ca6e604d4ef7e6e457f1f9bca",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 317999,
            "upload_time": "2024-11-04T10:14:33",
            "upload_time_iso_8601": "2024-11-04T10:14:33.505589Z",
            "url": "https://files.pythonhosted.org/packages/3d/61/e1cfe2119740d06e8c185ebfd342db17eebbbbe514dc9762b0ce2cd16973/fuzzy_date-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "420a0dc8b9777067ffe432a97f5521ac13a591d8ef200a8fd942a625993406fe",
                "md5": "1a04c4885276c6704f13cad8a80f3dcd",
                "sha256": "49aa1376c30b21e8f7c37ab73bc2db962ad0a39266d3ade4d8d3c1bc3347fabe"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1a04c4885276c6704f13cad8a80f3dcd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 311091,
            "upload_time": "2024-11-04T10:14:28",
            "upload_time_iso_8601": "2024-11-04T10:14:28.762238Z",
            "url": "https://files.pythonhosted.org/packages/42/0a/0dc8b9777067ffe432a97f5521ac13a591d8ef200a8fd942a625993406fe/fuzzy_date-0.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66479fafa97b31ff4f7750d36575a7948c85f50a01510d322c3c8bcd476441a6",
                "md5": "8ed143d11df1e6e86a9b33c6d5cff300",
                "sha256": "b80c7fb268f527e0f82da3379600b420c169bda7c76e5755b50abc10a245ac09"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8ed143d11df1e6e86a9b33c6d5cff300",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 356578,
            "upload_time": "2024-11-04T10:13:21",
            "upload_time_iso_8601": "2024-11-04T10:13:21.347633Z",
            "url": "https://files.pythonhosted.org/packages/66/47/9fafa97b31ff4f7750d36575a7948c85f50a01510d322c3c8bcd476441a6/fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "043fe2089b3468ae56b7745b376da4d0f81ac5924ca85339416ebacfbb269838",
                "md5": "214382fd3798e57cd80a002650d5858d",
                "sha256": "3a3693ab46301d5cbde3dfbd44f32747592efba4b547136fe812ee0eb1a53f6e"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "214382fd3798e57cd80a002650d5858d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 362424,
            "upload_time": "2024-11-04T10:13:34",
            "upload_time_iso_8601": "2024-11-04T10:13:34.250021Z",
            "url": "https://files.pythonhosted.org/packages/04/3f/e2089b3468ae56b7745b376da4d0f81ac5924ca85339416ebacfbb269838/fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1d02408df15aa9dbde951de7cefedc8063b711266bc8921b2eae444efda26b7",
                "md5": "b6520c1c1948e1eac1a9aaf59a7489a6",
                "sha256": "dfeaec857cb58b33c703c70ebfc6983c64fc46453aa7ea19cbda921b7c3c9b48"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b6520c1c1948e1eac1a9aaf59a7489a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 401171,
            "upload_time": "2024-11-04T10:13:47",
            "upload_time_iso_8601": "2024-11-04T10:13:47.493629Z",
            "url": "https://files.pythonhosted.org/packages/f1/d0/2408df15aa9dbde951de7cefedc8063b711266bc8921b2eae444efda26b7/fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb665e9fd51acc5ae9c2731a4bc924785d776d838731fb133c2082713d9ef01a",
                "md5": "dd3ddbc33015c046b7fa572f5762eeff",
                "sha256": "ec78489decf4998bf9bb6ebdbf24b97923416c92ee5d2e488f3c27253b1a2107"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "dd3ddbc33015c046b7fa572f5762eeff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 410006,
            "upload_time": "2024-11-04T10:13:58",
            "upload_time_iso_8601": "2024-11-04T10:13:58.329538Z",
            "url": "https://files.pythonhosted.org/packages/bb/66/5e9fd51acc5ae9c2731a4bc924785d776d838731fb133c2082713d9ef01a/fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d001418790f8aed603e65021662f4200580214839f785eb4a9df517bec71b8e",
                "md5": "90f5de0774ea996536cdac69931e252e",
                "sha256": "d279725158c039c10babf1524f3af921036ce60fcec958979ffbd1af1d047847"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90f5de0774ea996536cdac69931e252e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 358564,
            "upload_time": "2024-11-04T10:14:20",
            "upload_time_iso_8601": "2024-11-04T10:14:20.856855Z",
            "url": "https://files.pythonhosted.org/packages/8d/00/1418790f8aed603e65021662f4200580214839f785eb4a9df517bec71b8e/fuzzy_date-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f5245f07cf8218c0d40ffbce4681d2e66fc2bf06ab5d5fd4c3d3b4dbe06f256",
                "md5": "eaa915ade83fabfe8f306eb666bc3b41",
                "sha256": "b3a6bdbfcd566192efc2a9823aa2f6992e7e94448581f98d07d791544870e6fe"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "eaa915ade83fabfe8f306eb666bc3b41",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 382232,
            "upload_time": "2024-11-04T10:14:12",
            "upload_time_iso_8601": "2024-11-04T10:14:12.093294Z",
            "url": "https://files.pythonhosted.org/packages/7f/52/45f07cf8218c0d40ffbce4681d2e66fc2bf06ab5d5fd4c3d3b4dbe06f256/fuzzy_date-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97e06a693b1aee1a5bff1a2f3ee7ad17e18d213721b408a4013c373fa8573d28",
                "md5": "08d34656f5e00b810145146d485bf8e5",
                "sha256": "f21ad823337afae3bfdc3a13206acc83578050ce17d5c23fd178bcfc9a260247"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "08d34656f5e00b810145146d485bf8e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 541840,
            "upload_time": "2024-11-04T10:14:37",
            "upload_time_iso_8601": "2024-11-04T10:14:37.550358Z",
            "url": "https://files.pythonhosted.org/packages/97/e0/6a693b1aee1a5bff1a2f3ee7ad17e18d213721b408a4013c373fa8573d28/fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94971ab15d051458808eb922d975e1128efbf1b9d17cbec50ad9e6daf59ec195",
                "md5": "dae3275d826de937890195d6fdec37d4",
                "sha256": "f63bc630d41ae3e28eb7fe2bce99c434e1369409ce87071a0247a2aa30719cd3"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "dae3275d826de937890195d6fdec37d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 622392,
            "upload_time": "2024-11-04T10:14:50",
            "upload_time_iso_8601": "2024-11-04T10:14:50.871752Z",
            "url": "https://files.pythonhosted.org/packages/94/97/1ab15d051458808eb922d975e1128efbf1b9d17cbec50ad9e6daf59ec195/fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5907d75b83d931eca470d79f3fe9eb6bfabbd070ee9d7167f1fb2f501f24aee0",
                "md5": "1d0ec15061a20717f14bbc709dbc2bc4",
                "sha256": "b475ae9b137909b25cf4ffe6fda73b50b8158f184009771cd39bfd082e5c2fbd"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1d0ec15061a20717f14bbc709dbc2bc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 545690,
            "upload_time": "2024-11-04T10:15:02",
            "upload_time_iso_8601": "2024-11-04T10:15:02.339214Z",
            "url": "https://files.pythonhosted.org/packages/59/07/d75b83d931eca470d79f3fe9eb6bfabbd070ee9d7167f1fb2f501f24aee0/fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2b98bce8c76cf8ec53a0b39933d8ec619061784af53920949d5c818a4210f86",
                "md5": "4a93c6ecf2989ad468f01199ca24f821",
                "sha256": "786f6c4f8acec7698aa74112b0bebdc7ea23d38b8c10097d312c66374c12c300"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a93c6ecf2989ad468f01199ca24f821",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 523565,
            "upload_time": "2024-11-04T10:15:13",
            "upload_time_iso_8601": "2024-11-04T10:15:13.499833Z",
            "url": "https://files.pythonhosted.org/packages/f2/b9/8bce8c76cf8ec53a0b39933d8ec619061784af53920949d5c818a4210f86/fuzzy_date-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "338e656462f6a9713a259888cbeea2d60a3708eb917a93fe9023157aba9729d7",
                "md5": "8aa561bcd7bee266149e73a129dc188d",
                "sha256": "59279d750e7687d4672be9313f6de7cfffa5852c467c78605c2a2dfc305db8e2"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "8aa561bcd7bee266149e73a129dc188d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 198019,
            "upload_time": "2024-11-04T10:15:31",
            "upload_time_iso_8601": "2024-11-04T10:15:31.201103Z",
            "url": "https://files.pythonhosted.org/packages/33/8e/656462f6a9713a259888cbeea2d60a3708eb917a93fe9023157aba9729d7/fuzzy_date-0.4.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df559c6e317d4114d49da567ec596057bafc8f4789ceb1f93f06902374b52d3e",
                "md5": "ddabaeb5d5bdfd63009a77417a792118",
                "sha256": "347eedd721767c79ff081a11745f6fa3fb28409c391e938515878189fe1b1682"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ddabaeb5d5bdfd63009a77417a792118",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 209965,
            "upload_time": "2024-11-04T10:15:25",
            "upload_time_iso_8601": "2024-11-04T10:15:25.232695Z",
            "url": "https://files.pythonhosted.org/packages/df/55/9c6e317d4114d49da567ec596057bafc8f4789ceb1f93f06902374b52d3e/fuzzy_date-0.4.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "425f74b0a2612f136e9ea2c12381f568f804d9c7324f2f6333b099029f6831d0",
                "md5": "c28cd30c71d64f43d54dbe807b4c7255",
                "sha256": "45ae4afff6b6b06124f980cc64758d0f166f999689f06601b3d7ddc538b55460"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c28cd30c71d64f43d54dbe807b4c7255",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 358758,
            "upload_time": "2024-11-04T10:13:22",
            "upload_time_iso_8601": "2024-11-04T10:13:22.985484Z",
            "url": "https://files.pythonhosted.org/packages/42/5f/74b0a2612f136e9ea2c12381f568f804d9c7324f2f6333b099029f6831d0/fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "953b554c258fc43b20ca6a8fc1c783290b9abdcc97b40b53f216a0d530d10e1f",
                "md5": "d0f587d64af37d9f1e99fd169b98ee1d",
                "sha256": "46b669b141217635d3c7334d28ad8f29e67580a36a72f3c22c009b4a4e83d40f"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d0f587d64af37d9f1e99fd169b98ee1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 363514,
            "upload_time": "2024-11-04T10:13:36",
            "upload_time_iso_8601": "2024-11-04T10:13:36.064613Z",
            "url": "https://files.pythonhosted.org/packages/95/3b/554c258fc43b20ca6a8fc1c783290b9abdcc97b40b53f216a0d530d10e1f/fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3089c3e9b3747eb392682fe94d19641ce240b5303497227890c9ac2c9e44d698",
                "md5": "506307eb2ec270927c34402d76b93a12",
                "sha256": "1ec805e2754c9e6b1f580c5dc19dacc7b8ab89dd70da9765ef49cdefe00ae5c4"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "506307eb2ec270927c34402d76b93a12",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 402034,
            "upload_time": "2024-11-04T10:13:48",
            "upload_time_iso_8601": "2024-11-04T10:13:48.644828Z",
            "url": "https://files.pythonhosted.org/packages/30/89/c3e9b3747eb392682fe94d19641ce240b5303497227890c9ac2c9e44d698/fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d72e876e9c817a15aa98bd73f83b9cb32571b635bb7bdfd4a017a1de23a3f18",
                "md5": "c9f9030b52270ff49efab9469fa45906",
                "sha256": "5d9d9b10c6eccab96cf96ffecdd71a3d4a1522fce4268fbc72f0c8ed223903ba"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c9f9030b52270ff49efab9469fa45906",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 413753,
            "upload_time": "2024-11-04T10:14:00",
            "upload_time_iso_8601": "2024-11-04T10:14:00.116481Z",
            "url": "https://files.pythonhosted.org/packages/0d/72/e876e9c817a15aa98bd73f83b9cb32571b635bb7bdfd4a017a1de23a3f18/fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c60af6c04b77a0c80098c906f77d37f4e324f807153ea8c92f0aaa4da3d0ef1b",
                "md5": "93cc7cfdf49effc45899664459d95ac7",
                "sha256": "fdaf86b7d1a89f87e22bd039b04ae6a139c5170c7caa147ed06891ddac27c86a"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93cc7cfdf49effc45899664459d95ac7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 360755,
            "upload_time": "2024-11-04T10:14:22",
            "upload_time_iso_8601": "2024-11-04T10:14:22.162267Z",
            "url": "https://files.pythonhosted.org/packages/c6/0a/f6c04b77a0c80098c906f77d37f4e324f807153ea8c92f0aaa4da3d0ef1b/fuzzy_date-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "faca545f566eb875ddc75580ff1ddc340566ecc1d0b6c7d69e5d153f99bc9676",
                "md5": "e57a1b0757cc28c3d587ad46712db346",
                "sha256": "6da6cacb7f78f65fe244b664528c9da298dffd857e9db763449e6a1f008908e3"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e57a1b0757cc28c3d587ad46712db346",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 383199,
            "upload_time": "2024-11-04T10:14:13",
            "upload_time_iso_8601": "2024-11-04T10:14:13.600426Z",
            "url": "https://files.pythonhosted.org/packages/fa/ca/545f566eb875ddc75580ff1ddc340566ecc1d0b6c7d69e5d153f99bc9676/fuzzy_date-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fcad492e915d6a44c2ec681362822ff8a0198b3d1b2accdb30837cdf07482c50",
                "md5": "9f0e62e9f76d5b55502c9bb32d635cf5",
                "sha256": "0608fb1751032689820b364ca1483635272fe8fc1d7b75401fe14d81e2305723"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9f0e62e9f76d5b55502c9bb32d635cf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 543180,
            "upload_time": "2024-11-04T10:14:38",
            "upload_time_iso_8601": "2024-11-04T10:14:38.837508Z",
            "url": "https://files.pythonhosted.org/packages/fc/ad/492e915d6a44c2ec681362822ff8a0198b3d1b2accdb30837cdf07482c50/fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93c4d9b4c58d9b774d156b6cb7ae6f189e9cefca5301fab898afb035e3bd532b",
                "md5": "85e79c6ceaecfb81279b803cc7d70ee5",
                "sha256": "47dd211659dabec779f151e4ce4b348b8289aa83c9bdd6c92717dd2e36fddd57"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "85e79c6ceaecfb81279b803cc7d70ee5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 620637,
            "upload_time": "2024-11-04T10:14:52",
            "upload_time_iso_8601": "2024-11-04T10:14:52.547038Z",
            "url": "https://files.pythonhosted.org/packages/93/c4/d9b4c58d9b774d156b6cb7ae6f189e9cefca5301fab898afb035e3bd532b/fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ecfff59c0635e65656bc87b51e85fc167d189c69247c5e23c446ae4324d0da4",
                "md5": "b0c76b7fafd0e76047e9e34044103021",
                "sha256": "048edaae13a9f0bc246617e0e997ba015d70413e4975b013fb3b6bb845656671"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b0c76b7fafd0e76047e9e34044103021",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 547030,
            "upload_time": "2024-11-04T10:15:03",
            "upload_time_iso_8601": "2024-11-04T10:15:03.732959Z",
            "url": "https://files.pythonhosted.org/packages/3e/cf/ff59c0635e65656bc87b51e85fc167d189c69247c5e23c446ae4324d0da4/fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12c99781019181c34a511c758214c2771ab5372b69075b4c74367ff6e96ce11e",
                "md5": "82ab8b102717ce66c4c94fad9e36e974",
                "sha256": "4805e0aaa02cfed5d572c3b60a05e25e1a1ee8b8d61e31957ab7df4283355dfa"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82ab8b102717ce66c4c94fad9e36e974",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 525006,
            "upload_time": "2024-11-04T10:15:14",
            "upload_time_iso_8601": "2024-11-04T10:15:14.756230Z",
            "url": "https://files.pythonhosted.org/packages/12/c9/9781019181c34a511c758214c2771ab5372b69075b4c74367ff6e96ce11e/fuzzy_date-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2be88ff1da10911b48c12ba551b2f02a07143e992623be84e3e3718db09201f5",
                "md5": "500bb216eedf8d61b53cb115b59b7e92",
                "sha256": "a37fe770ad7e4639e41e68839cb29fcb2c6e9d992545c8f770861dc244977566"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "500bb216eedf8d61b53cb115b59b7e92",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 198790,
            "upload_time": "2024-11-04T10:15:32",
            "upload_time_iso_8601": "2024-11-04T10:15:32.444960Z",
            "url": "https://files.pythonhosted.org/packages/2b/e8/8ff1da10911b48c12ba551b2f02a07143e992623be84e3e3718db09201f5/fuzzy_date-0.4.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ef374331c918e7adbc86be7b9dd15e44d589ab8b1c6d4a96d618735ad864ade",
                "md5": "c5188e53e4048f241cedb36f541885e0",
                "sha256": "58e25f0f272188f51af5813d9b946b1e5cf0fae29bd2c6509771ca81f70eb7a4"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c5188e53e4048f241cedb36f541885e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 211168,
            "upload_time": "2024-11-04T10:15:26",
            "upload_time_iso_8601": "2024-11-04T10:15:26.452352Z",
            "url": "https://files.pythonhosted.org/packages/2e/f3/74331c918e7adbc86be7b9dd15e44d589ab8b1c6d4a96d618735ad864ade/fuzzy_date-0.4.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9d16c7dda8839590dff47c8cfa7c54e8092f362ede7a80142ec8ade530ae64b",
                "md5": "70589502e8117cdc9458956cfdf1bb81",
                "sha256": "2b23bf8e01ffae503dbdd5f6c41876e8851adac1fe0fa26274e41dd0cba14406"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "70589502e8117cdc9458956cfdf1bb81",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 313426,
            "upload_time": "2024-11-04T10:14:30",
            "upload_time_iso_8601": "2024-11-04T10:14:30.437326Z",
            "url": "https://files.pythonhosted.org/packages/d9/d1/6c7dda8839590dff47c8cfa7c54e8092f362ede7a80142ec8ade530ae64b/fuzzy_date-0.4.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dca19923bc2f47f8e31e3c75f146f790942b27a92dc696ac92b01848331548f0",
                "md5": "f772479f625651ec282cab1cd775f8d0",
                "sha256": "7329b435cabe64297a2aa71c509ede1103047293a229a0508ed1ccaa71167263"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f772479f625651ec282cab1cd775f8d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 357909,
            "upload_time": "2024-11-04T10:13:24",
            "upload_time_iso_8601": "2024-11-04T10:13:24.305195Z",
            "url": "https://files.pythonhosted.org/packages/dc/a1/9923bc2f47f8e31e3c75f146f790942b27a92dc696ac92b01848331548f0/fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "960748a5301278992edc4a28e51cd67b119b412e2244c802e3075ce90f31cef3",
                "md5": "30ce722f2963c12a520f9386bc311679",
                "sha256": "b7363f0e5a8cbc185bf97a82a32e0d141d589a1428af071a3a96d2ee6c1bcf72"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "30ce722f2963c12a520f9386bc311679",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 362464,
            "upload_time": "2024-11-04T10:13:37",
            "upload_time_iso_8601": "2024-11-04T10:13:37.382946Z",
            "url": "https://files.pythonhosted.org/packages/96/07/48a5301278992edc4a28e51cd67b119b412e2244c802e3075ce90f31cef3/fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eeec801d816f536995965cbaf0041979b81e5f41a45c519cf9a6fcf74336ce14",
                "md5": "e15b180f20d20b8ce357d590485e9486",
                "sha256": "f69c6e4f9812341f4b07055a637ac453f61cd1330ec7fcc85773b271026fb8f9"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e15b180f20d20b8ce357d590485e9486",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 401741,
            "upload_time": "2024-11-04T10:13:50",
            "upload_time_iso_8601": "2024-11-04T10:13:50.526800Z",
            "url": "https://files.pythonhosted.org/packages/ee/ec/801d816f536995965cbaf0041979b81e5f41a45c519cf9a6fcf74336ce14/fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "482332ee5df7379789ac0bed9d590e017e6909fc96fb72e214e3fa7948cee118",
                "md5": "2278550bb669015a8b8b74026263e37d",
                "sha256": "62ab803e971f0b3e2f2f1e3619a99f49dda62ad6948faa77c53a2e79c180388e"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2278550bb669015a8b8b74026263e37d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 413306,
            "upload_time": "2024-11-04T10:14:02",
            "upload_time_iso_8601": "2024-11-04T10:14:02.124386Z",
            "url": "https://files.pythonhosted.org/packages/48/23/32ee5df7379789ac0bed9d590e017e6909fc96fb72e214e3fa7948cee118/fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a949a7eb61cbc21cd53ee8ed59e86a77eeb15635d941a3bfb40cffeca12f6b65",
                "md5": "bd6356e2a2a85dd7ff3d9ad9bb88bba4",
                "sha256": "6dba443a877b251c8789574e7609eca963cbcc0eb2ae288e9c718eb78ea2ca1d"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd6356e2a2a85dd7ff3d9ad9bb88bba4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 359740,
            "upload_time": "2024-11-04T10:14:23",
            "upload_time_iso_8601": "2024-11-04T10:14:23.729017Z",
            "url": "https://files.pythonhosted.org/packages/a9/49/a7eb61cbc21cd53ee8ed59e86a77eeb15635d941a3bfb40cffeca12f6b65/fuzzy_date-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39fdfaa2d4b8814c7a243e52f7661f70140bff64dd9ae91805510870890f051a",
                "md5": "b58f37daa3edc31a267c7a75fb65d777",
                "sha256": "be8da401b0a37f8453411f1a21b93af89d32d6ad43a471dffdcb51ae21f03b60"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b58f37daa3edc31a267c7a75fb65d777",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 382969,
            "upload_time": "2024-11-04T10:14:15",
            "upload_time_iso_8601": "2024-11-04T10:14:15.336311Z",
            "url": "https://files.pythonhosted.org/packages/39/fd/faa2d4b8814c7a243e52f7661f70140bff64dd9ae91805510870890f051a/fuzzy_date-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b47716eba66baa030cedf93e1f2dfc9fa85271aa87db9672bce4ba9594ca5b2",
                "md5": "ff9adf9bd0b13b8b68d788b24d07407e",
                "sha256": "57418c97b20cb4620543bfdf019404c8fad117635ea3ee1cc265bbd182a74861"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ff9adf9bd0b13b8b68d788b24d07407e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 542582,
            "upload_time": "2024-11-04T10:14:40",
            "upload_time_iso_8601": "2024-11-04T10:14:40.236568Z",
            "url": "https://files.pythonhosted.org/packages/2b/47/716eba66baa030cedf93e1f2dfc9fa85271aa87db9672bce4ba9594ca5b2/fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c3e8e99c8361f6ade89100b2bc5f3098845f09b1f9d8055ffc336199f6d6f51",
                "md5": "ec6069b807499040b263f20810fa6e48",
                "sha256": "f2657c7c42f998c6bc8884037aa10be0fae042b9531fcb02252d4b6be4ceb05d"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ec6069b807499040b263f20810fa6e48",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 620493,
            "upload_time": "2024-11-04T10:14:53",
            "upload_time_iso_8601": "2024-11-04T10:14:53.850541Z",
            "url": "https://files.pythonhosted.org/packages/8c/3e/8e99c8361f6ade89100b2bc5f3098845f09b1f9d8055ffc336199f6d6f51/fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b81f8aa2ffdfafccd10d70a6f37aeed4f05df76e56e34c608096f75af84611e2",
                "md5": "0ff302b82b66ad14f7b6b42edae491b9",
                "sha256": "30ef2895372f9a96f351d1a108e790b07b1379fb9cd440869293b2ee28b37031"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0ff302b82b66ad14f7b6b42edae491b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 546944,
            "upload_time": "2024-11-04T10:15:05",
            "upload_time_iso_8601": "2024-11-04T10:15:05.125208Z",
            "url": "https://files.pythonhosted.org/packages/b8/1f/8aa2ffdfafccd10d70a6f37aeed4f05df76e56e34c608096f75af84611e2/fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "089532f806f2a209e6090412322adf9bf8f58b0a370030b40054ec0789d01b41",
                "md5": "2ad27eff88a12fa5fd836968e8403960",
                "sha256": "a553a74903784f37e764237ed2ad40da9f0c4474ba41f94bff0aab19b6a7cf3a"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ad27eff88a12fa5fd836968e8403960",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 524704,
            "upload_time": "2024-11-04T10:15:16",
            "upload_time_iso_8601": "2024-11-04T10:15:16.073933Z",
            "url": "https://files.pythonhosted.org/packages/08/95/32f806f2a209e6090412322adf9bf8f58b0a370030b40054ec0789d01b41/fuzzy_date-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d229f138cd1cf26cccd97b53c002397eae8258b9e964cb0eabbad51a153a00a6",
                "md5": "f1544d9bdb821dfc5a69944c1fd37913",
                "sha256": "cf1c13b1c02ffbcd55e097d16c7268dbba70f5f30c1257656fa33281e07d82f1"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "f1544d9bdb821dfc5a69944c1fd37913",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 198721,
            "upload_time": "2024-11-04T10:15:35",
            "upload_time_iso_8601": "2024-11-04T10:15:35.033155Z",
            "url": "https://files.pythonhosted.org/packages/d2/29/f138cd1cf26cccd97b53c002397eae8258b9e964cb0eabbad51a153a00a6/fuzzy_date-0.4.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8bda92bfa5116b11666b7c1467e5c689b0ff3f84b721b9fe387f5792ce4770e9",
                "md5": "4f2637437ab0bf62b5b3a92f0dc9fd6a",
                "sha256": "8f3c2f8dee4e244a15a4dc322e7e6b9a95861b1ebf521423128aa5b910194f4d"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4f2637437ab0bf62b5b3a92f0dc9fd6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 210970,
            "upload_time": "2024-11-04T10:15:27",
            "upload_time_iso_8601": "2024-11-04T10:15:27.686408Z",
            "url": "https://files.pythonhosted.org/packages/8b/da/92bfa5116b11666b7c1467e5c689b0ff3f84b721b9fe387f5792ce4770e9/fuzzy_date-0.4.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "713078528fcc7a6473ae92734132224eae9d6a330c597a320226f063d8f0b9af",
                "md5": "ab216d36ac6daba800d03acfa0e0e84f",
                "sha256": "d1a3de0e790900fb927c9f1bd1897328e8518c22057644d5e8f0af7cef3a9591"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ab216d36ac6daba800d03acfa0e0e84f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 360003,
            "upload_time": "2024-11-04T10:13:26",
            "upload_time_iso_8601": "2024-11-04T10:13:26.085744Z",
            "url": "https://files.pythonhosted.org/packages/71/30/78528fcc7a6473ae92734132224eae9d6a330c597a320226f063d8f0b9af/fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "993c1f47c61405373b29d47b3afd4af9eac4524d58720f750f80f7b22e43f060",
                "md5": "b207233ec82c8ff04491cb730c0cc830",
                "sha256": "c29380cfe3127ae237ee3848a198397f4c930e1c06c48f4be5664bbf1ee80ce5"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b207233ec82c8ff04491cb730c0cc830",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 365135,
            "upload_time": "2024-11-04T10:13:38",
            "upload_time_iso_8601": "2024-11-04T10:13:38.532554Z",
            "url": "https://files.pythonhosted.org/packages/99/3c/1f47c61405373b29d47b3afd4af9eac4524d58720f750f80f7b22e43f060/fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab5984209b37598aac02f7ca376ced347cfae76758a0f16cb5d5130764c3e4d9",
                "md5": "9f955ac372bee5ce70ef93ebc086aa50",
                "sha256": "1cc6aac3f1913fb22326a75072c62977dc5605544fd3e724d72c2a8acf80bdfe"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9f955ac372bee5ce70ef93ebc086aa50",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 402881,
            "upload_time": "2024-11-04T10:13:52",
            "upload_time_iso_8601": "2024-11-04T10:13:52.205919Z",
            "url": "https://files.pythonhosted.org/packages/ab/59/84209b37598aac02f7ca376ced347cfae76758a0f16cb5d5130764c3e4d9/fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cd2aadbcd9e4a365c85b981b1bf99cdb9385f297805134aa0af5095936f00a9",
                "md5": "55a77deac6957d9cdffdc9a39b424346",
                "sha256": "0237c4eb1d1a8a6fb12a2e04dbaa0e6fb79bd9860de42292909a96b18d18f790"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "55a77deac6957d9cdffdc9a39b424346",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 415325,
            "upload_time": "2024-11-04T10:14:03",
            "upload_time_iso_8601": "2024-11-04T10:14:03.339997Z",
            "url": "https://files.pythonhosted.org/packages/5c/d2/aadbcd9e4a365c85b981b1bf99cdb9385f297805134aa0af5095936f00a9/fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "508f5ffdbb492c711e7419d43fbe1f3730243c4248e19c4d6ab0499d38252265",
                "md5": "93179baadf53cd05bdfe12cfd4e64504",
                "sha256": "a16440e3eacabc14462fab31feec0290f2b2cdf10a2b22c9234cf5357ba7bbde"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93179baadf53cd05bdfe12cfd4e64504",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 362504,
            "upload_time": "2024-11-04T10:14:25",
            "upload_time_iso_8601": "2024-11-04T10:14:25.117149Z",
            "url": "https://files.pythonhosted.org/packages/50/8f/5ffdbb492c711e7419d43fbe1f3730243c4248e19c4d6ab0499d38252265/fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6c9ff766e5833d80bd0422709b0da823ca2889144b1233355a5b0d99602c103",
                "md5": "5bff41619142aeac514435371742ee4d",
                "sha256": "2c61ae96cdf3556a1ffd9e908e56ec1f3c1bdcd44064e86663453dd37c0ec21e"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "5bff41619142aeac514435371742ee4d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 384654,
            "upload_time": "2024-11-04T10:14:16",
            "upload_time_iso_8601": "2024-11-04T10:14:16.606104Z",
            "url": "https://files.pythonhosted.org/packages/f6/c9/ff766e5833d80bd0422709b0da823ca2889144b1233355a5b0d99602c103/fuzzy_date-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb9c68bdfc27681667401d1692fd7e012e1e4be56b77b735db756c130485034c",
                "md5": "b689073f1275093c261557a4bae83601",
                "sha256": "85d8147aac753afb03be5b07e617459eef389898e842364fabe196304e5113e6"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b689073f1275093c261557a4bae83601",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 544699,
            "upload_time": "2024-11-04T10:14:42",
            "upload_time_iso_8601": "2024-11-04T10:14:42.509595Z",
            "url": "https://files.pythonhosted.org/packages/eb/9c/68bdfc27681667401d1692fd7e012e1e4be56b77b735db756c130485034c/fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e50ea9332ff62730090b025d325dc7fdbf1be1071c1be66b659b8b1e1ced3f1",
                "md5": "81d8893bb1dcdc97d39d55770933ab1d",
                "sha256": "4a074f062d2002214472f43aad25422d4b8ee1913f5869252d671fb50586a9e8"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "81d8893bb1dcdc97d39d55770933ab1d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 622626,
            "upload_time": "2024-11-04T10:14:55",
            "upload_time_iso_8601": "2024-11-04T10:14:55.771157Z",
            "url": "https://files.pythonhosted.org/packages/0e/50/ea9332ff62730090b025d325dc7fdbf1be1071c1be66b659b8b1e1ced3f1/fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d81a50244dec454052c8716f6289fe3e2c5c0712ded5a4715594a58fc4b5ecf1",
                "md5": "3eac3b3a5e532268f494b446b8b12817",
                "sha256": "bb3016e3ae04c21ace22dd05d1be62b85de91d5141ae822c319fc01d4a6a9dc2"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3eac3b3a5e532268f494b446b8b12817",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 548776,
            "upload_time": "2024-11-04T10:15:07",
            "upload_time_iso_8601": "2024-11-04T10:15:07.113059Z",
            "url": "https://files.pythonhosted.org/packages/d8/1a/50244dec454052c8716f6289fe3e2c5c0712ded5a4715594a58fc4b5ecf1/fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e738c5f759ebfeb2296301b6a8a64ab3295026200c22dc2454ed93edc5781603",
                "md5": "e89b2313736004524a3d3467e5dee42f",
                "sha256": "32016bbb0bc6c3050860a399a9a283db0bfa0f3b0c9582954dbef21bf3fbfbbf"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e89b2313736004524a3d3467e5dee42f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 525678,
            "upload_time": "2024-11-04T10:15:17",
            "upload_time_iso_8601": "2024-11-04T10:15:17.477768Z",
            "url": "https://files.pythonhosted.org/packages/e7/38/c5f759ebfeb2296301b6a8a64ab3295026200c22dc2454ed93edc5781603/fuzzy_date-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "436ee36862643b6a1d43a1aad790c59c90d8a0602459d21e8e72a05b999623f0",
                "md5": "4b1090c3d8bd8629a18bf90d1ceb0b41",
                "sha256": "50a9f92028f1382d15a29f27b37e56d2ec888d8f986bfbdd2a4b83fa53816daf"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4b1090c3d8bd8629a18bf90d1ceb0b41",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 360110,
            "upload_time": "2024-11-04T10:13:28",
            "upload_time_iso_8601": "2024-11-04T10:13:28.153426Z",
            "url": "https://files.pythonhosted.org/packages/43/6e/e36862643b6a1d43a1aad790c59c90d8a0602459d21e8e72a05b999623f0/fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54aac7a8636b2051cb754a7c3f29978639cfee33ab8abae0ac7dd2d16bdf80d7",
                "md5": "2cbb6f32f34d234ed3b1b108735b38a1",
                "sha256": "453cd0fdff7f068463544866bc5f074f4805ee73ec432420b709a943dbdc6538"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2cbb6f32f34d234ed3b1b108735b38a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 366222,
            "upload_time": "2024-11-04T10:13:40",
            "upload_time_iso_8601": "2024-11-04T10:13:40.558753Z",
            "url": "https://files.pythonhosted.org/packages/54/aa/c7a8636b2051cb754a7c3f29978639cfee33ab8abae0ac7dd2d16bdf80d7/fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87554a4dfa0674e5cb156089f59a1c267dff41e6fd4388366f171da73ce5715e",
                "md5": "c9dad2a0f688c41213b74c51e2502fd3",
                "sha256": "37c6bda3aede8b4a94708ff251a425bdc14992994e76af1d3db7fbc391a005aa"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c9dad2a0f688c41213b74c51e2502fd3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 403755,
            "upload_time": "2024-11-04T10:13:53",
            "upload_time_iso_8601": "2024-11-04T10:13:53.406118Z",
            "url": "https://files.pythonhosted.org/packages/87/55/4a4dfa0674e5cb156089f59a1c267dff41e6fd4388366f171da73ce5715e/fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9855f069da8330eba7e0e71d37ce6de489d7c4390119c858c640be3c2e8d4729",
                "md5": "334ea5fdb67219ea57cd7bcabe2ec8ec",
                "sha256": "c867716ce49c97f5bd3e65f4e0c2ecc4009ed27d88edc9095bfe25346823b150"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "334ea5fdb67219ea57cd7bcabe2ec8ec",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 415558,
            "upload_time": "2024-11-04T10:14:05",
            "upload_time_iso_8601": "2024-11-04T10:14:05.091465Z",
            "url": "https://files.pythonhosted.org/packages/98/55/f069da8330eba7e0e71d37ce6de489d7c4390119c858c640be3c2e8d4729/fuzzy_date-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf1c181aefb3f7bdcee6c9cd6bc8650a7225c4de132548ddbbaa0d7443262c40",
                "md5": "8b75d7c7479c428d6d1369533649c0ff",
                "sha256": "d1aa9f9346de5cf00bab89bc3a97b01130fb3c0ca3adb834e62d3b63aa3b8744"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8b75d7c7479c428d6d1369533649c0ff",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 545483,
            "upload_time": "2024-11-04T10:14:43",
            "upload_time_iso_8601": "2024-11-04T10:14:43.785431Z",
            "url": "https://files.pythonhosted.org/packages/bf/1c/181aefb3f7bdcee6c9cd6bc8650a7225c4de132548ddbbaa0d7443262c40/fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "759c107e80eb89053bee797019d494754c181e8daeb3e69cc2b0d00344aa5b38",
                "md5": "a399299f01578d2d16b0976bd905320b",
                "sha256": "c349c9618cd0a6e5da7f534cb42b1c231149ecb80d25cef79ffd872034df78a0"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a399299f01578d2d16b0976bd905320b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 622705,
            "upload_time": "2024-11-04T10:14:57",
            "upload_time_iso_8601": "2024-11-04T10:14:57.124578Z",
            "url": "https://files.pythonhosted.org/packages/75/9c/107e80eb89053bee797019d494754c181e8daeb3e69cc2b0d00344aa5b38/fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a96fcaf0764c8ae5d202fe8df1c476189e9dc63f752321897ba6b85dccb7426",
                "md5": "7f6c4adfc38a010eac43ef8c0f3ee07b",
                "sha256": "9903539758fd06066edbb9bf8adf166bd1de5e9e6ff2f834c0a64afa80764ece"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7f6c4adfc38a010eac43ef8c0f3ee07b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 549264,
            "upload_time": "2024-11-04T10:15:08",
            "upload_time_iso_8601": "2024-11-04T10:15:08.395299Z",
            "url": "https://files.pythonhosted.org/packages/7a/96/fcaf0764c8ae5d202fe8df1c476189e9dc63f752321897ba6b85dccb7426/fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4a55a2da05ef7e883ce815f3648c4261a372e5625c5630eb0cd51f25b0aba81",
                "md5": "01b6713500a5a156acdd9d4631691370",
                "sha256": "a985cb51549aeaebf00d0bc3eefdf5d5b2dafea21fb8954531c5d2bfa7b5c7a4"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01b6713500a5a156acdd9d4631691370",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 526811,
            "upload_time": "2024-11-04T10:15:18",
            "upload_time_iso_8601": "2024-11-04T10:15:18.760922Z",
            "url": "https://files.pythonhosted.org/packages/f4/a5/5a2da05ef7e883ce815f3648c4261a372e5625c5630eb0cd51f25b0aba81/fuzzy_date-0.4.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c7185b0aa65d858d1b05094d9229bd00b1a30337c047995e0df3b19b195d7332",
                "md5": "a951a080032f16cf8ec5a56284b26e28",
                "sha256": "04ce676abf8764640d7e096d4e1bd33fb825a79b8e5cf585aaaabdbfdc536c6f"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a951a080032f16cf8ec5a56284b26e28",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 359664,
            "upload_time": "2024-11-04T10:13:29",
            "upload_time_iso_8601": "2024-11-04T10:13:29.570632Z",
            "url": "https://files.pythonhosted.org/packages/c7/18/5b0aa65d858d1b05094d9229bd00b1a30337c047995e0df3b19b195d7332/fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdee12b72c329a95cac621fc1878cdce51d3eed1137017cea753ae988a318eaa",
                "md5": "c91dba0e22d71a3a738e9a2c84e4fb8c",
                "sha256": "963e986e19fa05eda8d3826305db797a3e481ea128f83e53202bbd84d9602571"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c91dba0e22d71a3a738e9a2c84e4fb8c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 365767,
            "upload_time": "2024-11-04T10:13:42",
            "upload_time_iso_8601": "2024-11-04T10:13:42.229103Z",
            "url": "https://files.pythonhosted.org/packages/fd/ee/12b72c329a95cac621fc1878cdce51d3eed1137017cea753ae988a318eaa/fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4a9ee65a892a4e6c8c9522be0c84d11aabbd91bcfebe09445bb0cd4e51ecbdd",
                "md5": "b0a85dc247ba138c0c68ff98d24240ca",
                "sha256": "6310d85bb3f523905e97fc3508c006f9ea46465a08835bdb52434b40a4b0a98a"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b0a85dc247ba138c0c68ff98d24240ca",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 403167,
            "upload_time": "2024-11-04T10:13:54",
            "upload_time_iso_8601": "2024-11-04T10:13:54.697719Z",
            "url": "https://files.pythonhosted.org/packages/d4/a9/ee65a892a4e6c8c9522be0c84d11aabbd91bcfebe09445bb0cd4e51ecbdd/fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07abf14e98b71f33668988e36b666afd16e762033c43fd9416b7d982d4644d62",
                "md5": "73835c48b737c3a36cb929892dadd3b1",
                "sha256": "17059816083ea1a1f5e37d542cbf2bfd06226a2565eb8b28161ebce16190412d"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "73835c48b737c3a36cb929892dadd3b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 415740,
            "upload_time": "2024-11-04T10:14:06",
            "upload_time_iso_8601": "2024-11-04T10:14:06.758604Z",
            "url": "https://files.pythonhosted.org/packages/07/ab/f14e98b71f33668988e36b666afd16e762033c43fd9416b7d982d4644d62/fuzzy_date-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "137e73188554ae0536504136e8f06c8731f98f82d365df45f3b7371c379caa59",
                "md5": "3e52f65580f1b1c2ed41ee6374427b1e",
                "sha256": "3f98684ad49015303958e553cb566b764595cbdd31c8014d73fce6d7dffa1637"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3e52f65580f1b1c2ed41ee6374427b1e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 545156,
            "upload_time": "2024-11-04T10:14:46",
            "upload_time_iso_8601": "2024-11-04T10:14:46.242846Z",
            "url": "https://files.pythonhosted.org/packages/13/7e/73188554ae0536504136e8f06c8731f98f82d365df45f3b7371c379caa59/fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f8772f753e9cae0f6f829ee92050a0ecd5812b16930776094a3070fecd316bf",
                "md5": "4438e975d0f950bfbe17240aa72e61a9",
                "sha256": "0d4bd069ade09be35fd1a88eed587c1bd38a8faf1b9c078e7b7594338b5bf4d1"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4438e975d0f950bfbe17240aa72e61a9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 622571,
            "upload_time": "2024-11-04T10:14:58",
            "upload_time_iso_8601": "2024-11-04T10:14:58.464227Z",
            "url": "https://files.pythonhosted.org/packages/6f/87/72f753e9cae0f6f829ee92050a0ecd5812b16930776094a3070fecd316bf/fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc8dea3b5406a5816cf5e3cea9031e770eabecff1d80c7ec144531d20367be59",
                "md5": "dd4a9f0fd08c5994ef0788e321837bd4",
                "sha256": "ebb9f1f9583490a964e96b065315ddca4ba90781efbf1b2c39b6a38f7d494623"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "dd4a9f0fd08c5994ef0788e321837bd4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 548206,
            "upload_time": "2024-11-04T10:15:09",
            "upload_time_iso_8601": "2024-11-04T10:15:09.711221Z",
            "url": "https://files.pythonhosted.org/packages/cc/8d/ea3b5406a5816cf5e3cea9031e770eabecff1d80c7ec144531d20367be59/fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f5488f7275e40f5ea7a096ac5c36ac6629ca3e886004905e9f04f9a3b74d6f1",
                "md5": "e8b860f3659a3b5532b9aa097614a366",
                "sha256": "bb02d77781e3e80b67f0af1d6baa220f8827a2c7a2b166be3f94bf01cedb5e7c"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8b860f3659a3b5532b9aa097614a366",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 526070,
            "upload_time": "2024-11-04T10:15:20",
            "upload_time_iso_8601": "2024-11-04T10:15:20.072014Z",
            "url": "https://files.pythonhosted.org/packages/5f/54/88f7275e40f5ea7a096ac5c36ac6629ca3e886004905e9f04f9a3b74d6f1/fuzzy_date-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "324e0d3460202363b83cfb71442b107568b3860d9449d4d7076aed5489b27b77",
                "md5": "8fa39c2846acc9781dc88354d6539642",
                "sha256": "49061886f5b8c51b15e77185ad432c8c67bb3384a286f86a01087a187c6fb108"
            },
            "downloads": -1,
            "filename": "fuzzy_date-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8fa39c2846acc9781dc88354d6539642",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 29899,
            "upload_time": "2024-11-04T10:15:21",
            "upload_time_iso_8601": "2024-11-04T10:15:21.212259Z",
            "url": "https://files.pythonhosted.org/packages/32/4e/0d3460202363b83cfb71442b107568b3860d9449d4d7076aed5489b27b77/fuzzy_date-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-04 10:15:21",
    "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.93255s