pydantic-core


Namepydantic-core JSON
Version 2.18.1 PyPI version JSON
download
home_pagehttps://github.com/pydantic/pydantic-core
SummaryCore functionality for Pydantic validation and serialization
upload_time2024-04-11 14:01:08
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pydantic-core

[![CI](https://github.com/pydantic/pydantic-core/workflows/ci/badge.svg?event=push)](https://github.com/pydantic/pydantic-core/actions?query=event%3Apush+branch%3Amain+workflow%3Aci)
[![Coverage](https://codecov.io/gh/pydantic/pydantic-core/branch/main/graph/badge.svg)](https://codecov.io/gh/pydantic/pydantic-core)
[![pypi](https://img.shields.io/pypi/v/pydantic-core.svg)](https://pypi.python.org/pypi/pydantic-core)
[![versions](https://img.shields.io/pypi/pyversions/pydantic-core.svg)](https://github.com/pydantic/pydantic-core)
[![license](https://img.shields.io/github/license/pydantic/pydantic-core.svg)](https://github.com/pydantic/pydantic-core/blob/main/LICENSE)

This package provides the core functionality for [pydantic](https://docs.pydantic.dev) validation and serialization.

Pydantic-core is currently around 17x faster than pydantic V1.
See [`tests/benchmarks/`](./tests/benchmarks/) for details.

## Example of direct usage

_NOTE: You should not need to use pydantic-core directly; instead, use pydantic, which in turn uses pydantic-core._

```py
from pydantic_core import SchemaValidator, ValidationError


v = SchemaValidator(
    {
        'type': 'typed-dict',
        'fields': {
            'name': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'str',
                },
            },
            'age': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'int',
                    'ge': 18,
                },
            },
            'is_developer': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'default',
                    'schema': {'type': 'bool'},
                    'default': True,
                },
            },
        },
    }
)

r1 = v.validate_python({'name': 'Samuel', 'age': 35})
assert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}

# pydantic-core can also validate JSON directly
r2 = v.validate_json('{"name": "Samuel", "age": 35}')
assert r1 == r2

try:
    v.validate_python({'name': 'Samuel', 'age': 11})
except ValidationError as e:
    print(e)
    """
    1 validation error for model
    age
      Input should be greater than or equal to 18
      [type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]
    """
```

## Getting Started

You'll need rust stable [installed](https://rustup.rs/), or rust nightly if you want to generate accurate coverage.

With rust and python 3.8+ installed, compiling pydantic-core should be possible with roughly the following:

```bash
# clone this repo or your fork
git clone git@github.com:pydantic/pydantic-core.git
cd pydantic-core
# create a new virtual env
python3 -m venv env
source env/bin/activate
# install dependencies and install pydantic-core
make install
```

That should be it, the example shown above should now run.

You might find it useful to look at [`python/pydantic_core/_pydantic_core.pyi`](./python/pydantic_core/_pydantic_core.pyi) and
[`python/pydantic_core/core_schema.py`](./python/pydantic_core/core_schema.py) for more information on the python API,
beyond that, [`tests/`](./tests) provide a large number of examples of usage.

If you want to contribute to pydantic-core, you'll want to use some other make commands:
* `make build-dev` to build the package during development
* `make build-prod` to perform an optimised build for benchmarking
* `make test` to run the tests
* `make testcov` to run the tests and generate a coverage report
* `make lint` to run the linter
* `make format` to format python and rust code
* `make` to run `format build-dev lint test`

## Profiling

It's possible to profile the code using the [`flamegraph` utility from `flamegraph-rs`](https://github.com/flamegraph-rs/flamegraph). (Tested on Linux.) You can install this with `cargo install flamegraph`.

Run `make build-profiling` to install a release build with debugging symbols included (needed for profiling).

Once that is built, you can profile pytest benchmarks with (e.g.):

```bash
flamegraph -- pytest tests/benchmarks/test_micro_benchmarks.py -k test_list_of_ints_core_py --benchmark-enable
```
The `flamegraph` command will produce an interactive SVG at `flamegraph.svg`.

## Releasing

1. Bump package version locally. Do not just edit `Cargo.toml` on Github, you need both `Cargo.toml` and `Cargo.lock` to be updated.
2. Make a PR for the version bump and merge it.
3. Go to https://github.com/pydantic/pydantic-core/releases and click "Draft a new release"
4. In the "Choose a tag" dropdown enter the new tag `v<the.new.version>` and select "Create new tag on publish" when the option appears.
5. Enter the release title in the form "v<the.new.version> <YYYY-MM-DD>"
6. Click Generate release notes button
7. Click Publish release
8. Go to https://github.com/pydantic/pydantic-core/actions and ensure that all build for release are done successfully.
9. Go to https://pypi.org/project/pydantic-core/ and ensure that the latest release is published.
10. Done 🎉


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pydantic/pydantic-core",
    "name": "pydantic-core",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Samuel Colvin <s@muelcolvin.com>",
    "download_url": "https://files.pythonhosted.org/packages/3d/28/d693aab237fca82da327990a88a983b2b84b890032076ee4a87e18038dbb/pydantic_core-2.18.1.tar.gz",
    "platform": null,
    "description": "# pydantic-core\n\n[![CI](https://github.com/pydantic/pydantic-core/workflows/ci/badge.svg?event=push)](https://github.com/pydantic/pydantic-core/actions?query=event%3Apush+branch%3Amain+workflow%3Aci)\n[![Coverage](https://codecov.io/gh/pydantic/pydantic-core/branch/main/graph/badge.svg)](https://codecov.io/gh/pydantic/pydantic-core)\n[![pypi](https://img.shields.io/pypi/v/pydantic-core.svg)](https://pypi.python.org/pypi/pydantic-core)\n[![versions](https://img.shields.io/pypi/pyversions/pydantic-core.svg)](https://github.com/pydantic/pydantic-core)\n[![license](https://img.shields.io/github/license/pydantic/pydantic-core.svg)](https://github.com/pydantic/pydantic-core/blob/main/LICENSE)\n\nThis package provides the core functionality for [pydantic](https://docs.pydantic.dev) validation and serialization.\n\nPydantic-core is currently around 17x faster than pydantic V1.\nSee [`tests/benchmarks/`](./tests/benchmarks/) for details.\n\n## Example of direct usage\n\n_NOTE: You should not need to use pydantic-core directly; instead, use pydantic, which in turn uses pydantic-core._\n\n```py\nfrom pydantic_core import SchemaValidator, ValidationError\n\n\nv = SchemaValidator(\n    {\n        'type': 'typed-dict',\n        'fields': {\n            'name': {\n                'type': 'typed-dict-field',\n                'schema': {\n                    'type': 'str',\n                },\n            },\n            'age': {\n                'type': 'typed-dict-field',\n                'schema': {\n                    'type': 'int',\n                    'ge': 18,\n                },\n            },\n            'is_developer': {\n                'type': 'typed-dict-field',\n                'schema': {\n                    'type': 'default',\n                    'schema': {'type': 'bool'},\n                    'default': True,\n                },\n            },\n        },\n    }\n)\n\nr1 = v.validate_python({'name': 'Samuel', 'age': 35})\nassert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}\n\n# pydantic-core can also validate JSON directly\nr2 = v.validate_json('{\"name\": \"Samuel\", \"age\": 35}')\nassert r1 == r2\n\ntry:\n    v.validate_python({'name': 'Samuel', 'age': 11})\nexcept ValidationError as e:\n    print(e)\n    \"\"\"\n    1 validation error for model\n    age\n      Input should be greater than or equal to 18\n      [type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]\n    \"\"\"\n```\n\n## Getting Started\n\nYou'll need rust stable [installed](https://rustup.rs/), or rust nightly if you want to generate accurate coverage.\n\nWith rust and python 3.8+ installed, compiling pydantic-core should be possible with roughly the following:\n\n```bash\n# clone this repo or your fork\ngit clone git@github.com:pydantic/pydantic-core.git\ncd pydantic-core\n# create a new virtual env\npython3 -m venv env\nsource env/bin/activate\n# install dependencies and install pydantic-core\nmake install\n```\n\nThat should be it, the example shown above should now run.\n\nYou might find it useful to look at [`python/pydantic_core/_pydantic_core.pyi`](./python/pydantic_core/_pydantic_core.pyi) and\n[`python/pydantic_core/core_schema.py`](./python/pydantic_core/core_schema.py) for more information on the python API,\nbeyond that, [`tests/`](./tests) provide a large number of examples of usage.\n\nIf you want to contribute to pydantic-core, you'll want to use some other make commands:\n* `make build-dev` to build the package during development\n* `make build-prod` to perform an optimised build for benchmarking\n* `make test` to run the tests\n* `make testcov` to run the tests and generate a coverage report\n* `make lint` to run the linter\n* `make format` to format python and rust code\n* `make` to run `format build-dev lint test`\n\n## Profiling\n\nIt's possible to profile the code using the [`flamegraph` utility from `flamegraph-rs`](https://github.com/flamegraph-rs/flamegraph). (Tested on Linux.) You can install this with `cargo install flamegraph`.\n\nRun `make build-profiling` to install a release build with debugging symbols included (needed for profiling).\n\nOnce that is built, you can profile pytest benchmarks with (e.g.):\n\n```bash\nflamegraph -- pytest tests/benchmarks/test_micro_benchmarks.py -k test_list_of_ints_core_py --benchmark-enable\n```\nThe `flamegraph` command will produce an interactive SVG at `flamegraph.svg`.\n\n## Releasing\n\n1. Bump package version locally. Do not just edit `Cargo.toml` on Github, you need both `Cargo.toml` and `Cargo.lock` to be updated.\n2. Make a PR for the version bump and merge it.\n3. Go to https://github.com/pydantic/pydantic-core/releases and click \"Draft a new release\"\n4. In the \"Choose a tag\" dropdown enter the new tag `v<the.new.version>` and select \"Create new tag on publish\" when the option appears.\n5. Enter the release title in the form \"v<the.new.version> <YYYY-MM-DD>\"\n6. Click Generate release notes button\n7. Click Publish release\n8. Go to https://github.com/pydantic/pydantic-core/actions and ensure that all build for release are done successfully.\n9. Go to https://pypi.org/project/pydantic-core/ and ensure that the latest release is published.\n10. Done \ud83c\udf89\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Core functionality for Pydantic validation and serialization",
    "version": "2.18.1",
    "project_urls": {
        "Funding": "https://github.com/sponsors/samuelcolvin",
        "Homepage": "https://github.com/pydantic/pydantic-core",
        "Source": "https://github.com/pydantic/pydantic-core"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4779add41d5abb5dbb77d203e467ea5ba948f97f825f77c87bbb6a461f2035c",
                "md5": "ecec84fd8a113cea4064aad41569e2c0",
                "sha256": "ee9cf33e7fe14243f5ca6977658eb7d1042caaa66847daacbd2117adb258b226"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ecec84fd8a113cea4064aad41569e2c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1857513,
            "upload_time": "2024-04-11T13:57:21",
            "upload_time_iso_8601": "2024-04-11T13:57:21.557714Z",
            "url": "https://files.pythonhosted.org/packages/d4/77/9add41d5abb5dbb77d203e467ea5ba948f97f825f77c87bbb6a461f2035c/pydantic_core-2.18.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6eba9f1f92e4405d5dfe78f3ac58c1d76d0fd2ef1642209cdb189afeb9967899",
                "md5": "310680cf618466ad2bf7ad025177f5a7",
                "sha256": "6b7bbb97d82659ac8b37450c60ff2e9f97e4eb0f8a8a3645a5568b9334b08b50"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "310680cf618466ad2bf7ad025177f5a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1774553,
            "upload_time": "2024-04-11T13:57:24",
            "upload_time_iso_8601": "2024-04-11T13:57:24.753003Z",
            "url": "https://files.pythonhosted.org/packages/6e/ba/9f1f92e4405d5dfe78f3ac58c1d76d0fd2ef1642209cdb189afeb9967899/pydantic_core-2.18.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d1dcdcae327834bdbdb5b105543041fb8fb65693b0061d914cfee0638ba54bd",
                "md5": "081afe68092200c050a1bc9a3aa643bb",
                "sha256": "df4249b579e75094f7e9bb4bd28231acf55e308bf686b952f43100a5a0be394c"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "081afe68092200c050a1bc9a3aa643bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1816905,
            "upload_time": "2024-04-11T13:57:27",
            "upload_time_iso_8601": "2024-04-11T13:57:27.273392Z",
            "url": "https://files.pythonhosted.org/packages/8d/1d/cdcae327834bdbdb5b105543041fb8fb65693b0061d914cfee0638ba54bd/pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a583a846083443c68017cbe155b5226207ecaf3d2a0503d7ec4c32bd07a62cf",
                "md5": "7780330ffb9b72a0109b7454cd1765a3",
                "sha256": "d0491006a6ad20507aec2be72e7831a42efc93193d2402018007ff827dc62926"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7780330ffb9b72a0109b7454cd1765a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1804340,
            "upload_time": "2024-04-11T13:57:30",
            "upload_time_iso_8601": "2024-04-11T13:57:30.429831Z",
            "url": "https://files.pythonhosted.org/packages/4a/58/3a846083443c68017cbe155b5226207ecaf3d2a0503d7ec4c32bd07a62cf/pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45c2b2994b707f2f35f3c1b87ab6ac65411fca22ab61452428783ec36b419446",
                "md5": "55f9f2daa3eb3019378b18b7cc453295",
                "sha256": "2ae80f72bb7a3e397ab37b53a2b49c62cc5496412e71bc4f1277620a7ce3f52b"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "55f9f2daa3eb3019378b18b7cc453295",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2007912,
            "upload_time": "2024-04-11T13:57:32",
            "upload_time_iso_8601": "2024-04-11T13:57:32.895496Z",
            "url": "https://files.pythonhosted.org/packages/45/c2/b2994b707f2f35f3c1b87ab6ac65411fca22ab61452428783ec36b419446/pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96804a24475c929105809e4182e601e7e659225fc24a1bbbdb1e5ed31874c123",
                "md5": "f1fdcff5c1d349f887b756aaf18c749a",
                "sha256": "58aca931bef83217fca7a390e0486ae327c4af9c3e941adb75f8772f8eeb03a1"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f1fdcff5c1d349f887b756aaf18c749a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2976122,
            "upload_time": "2024-04-11T13:57:35",
            "upload_time_iso_8601": "2024-04-11T13:57:35.566669Z",
            "url": "https://files.pythonhosted.org/packages/96/80/4a24475c929105809e4182e601e7e659225fc24a1bbbdb1e5ed31874c123/pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5710e5b53ab5e11719d899e9cc5cccab1147e0c9f8a2643099b0184e50df0ad8",
                "md5": "5d9bcecd191bedc3dd25a4e6b8f11a56",
                "sha256": "1be91ad664fc9245404a789d60cba1e91c26b1454ba136d2a1bf0c2ac0c0505a"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d9bcecd191bedc3dd25a4e6b8f11a56",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2053773,
            "upload_time": "2024-04-11T13:57:37",
            "upload_time_iso_8601": "2024-04-11T13:57:37.671459Z",
            "url": "https://files.pythonhosted.org/packages/57/10/e5b53ab5e11719d899e9cc5cccab1147e0c9f8a2643099b0184e50df0ad8/pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1d01943949a08650780fd53f78eab767204a49539e5c175274bb52bb2cdcfa8",
                "md5": "e2723a9892747dae8e3b07c41b79549e",
                "sha256": "667880321e916a8920ef49f5d50e7983792cf59f3b6079f3c9dac2b88a311d17"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e2723a9892747dae8e3b07c41b79549e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1925553,
            "upload_time": "2024-04-11T13:57:40",
            "upload_time_iso_8601": "2024-04-11T13:57:40.708236Z",
            "url": "https://files.pythonhosted.org/packages/a1/d0/1943949a08650780fd53f78eab767204a49539e5c175274bb52bb2cdcfa8/pydantic_core-2.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6328b82649af91e83ac25e9bf747d75fec1389aeaae0e723aaa5d0fe2a67157",
                "md5": "3f9e650e9f451b8aa4b596a5e790397d",
                "sha256": "f7054fdc556f5421f01e39cbb767d5ec5c1139ea98c3e5b350e02e62201740c7"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3f9e650e9f451b8aa4b596a5e790397d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1994831,
            "upload_time": "2024-04-11T13:57:43",
            "upload_time_iso_8601": "2024-04-11T13:57:43.538314Z",
            "url": "https://files.pythonhosted.org/packages/f6/32/8b82649af91e83ac25e9bf747d75fec1389aeaae0e723aaa5d0fe2a67157/pydantic_core-2.18.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49a5132eabaf95b64d63fbee426588322377897b502c753e9f889c4a78f17f89",
                "md5": "7f06fc2642934325a6dce025f68b92d8",
                "sha256": "030e4f9516f9947f38179249778709a460a3adb516bf39b5eb9066fcfe43d0e6"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f06fc2642934325a6dce025f68b92d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2121646,
            "upload_time": "2024-04-11T13:57:46",
            "upload_time_iso_8601": "2024-04-11T13:57:46.390032Z",
            "url": "https://files.pythonhosted.org/packages/49/a5/132eabaf95b64d63fbee426588322377897b502c753e9f889c4a78f17f89/pydantic_core-2.18.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b13228fa12d6c91ac4bebecaa69de51af9e69265ef410168c62c091f784864d4",
                "md5": "9a61efff0d8fbee0065b89ba371bf9db",
                "sha256": "2e91711e36e229978d92642bfc3546333a9127ecebb3f2761372e096395fc649"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "9a61efff0d8fbee0065b89ba371bf9db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1722887,
            "upload_time": "2024-04-11T13:57:49",
            "upload_time_iso_8601": "2024-04-11T13:57:49.059518Z",
            "url": "https://files.pythonhosted.org/packages/b1/32/28fa12d6c91ac4bebecaa69de51af9e69265ef410168c62c091f784864d4/pydantic_core-2.18.1-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "649f597b36ed210aac1c31ef8d3d9af4a3b0f2cd9f46a19061cf9885bb49a27f",
                "md5": "bb32a53c0c17dcfe609695e41ff61e44",
                "sha256": "9a29726f91c6cb390b3c2338f0df5cd3e216ad7a938762d11c994bb37552edb0"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bb32a53c0c17dcfe609695e41ff61e44",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1916401,
            "upload_time": "2024-04-11T13:57:51",
            "upload_time_iso_8601": "2024-04-11T13:57:51.209046Z",
            "url": "https://files.pythonhosted.org/packages/64/9f/597b36ed210aac1c31ef8d3d9af4a3b0f2cd9f46a19061cf9885bb49a27f/pydantic_core-2.18.1-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e275e5b0831624b5529cf54a74305a65f29bf339d574b4bc5c4f11683d89f30",
                "md5": "282dad2d755bbc23b57a301a546167fb",
                "sha256": "9ece8a49696669d483d206b4474c367852c44815fca23ac4e48b72b339807f80"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "282dad2d755bbc23b57a301a546167fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1857017,
            "upload_time": "2024-04-11T13:57:53",
            "upload_time_iso_8601": "2024-04-11T13:57:53.147532Z",
            "url": "https://files.pythonhosted.org/packages/7e/27/5e5b0831624b5529cf54a74305a65f29bf339d574b4bc5c4f11683d89f30/pydantic_core-2.18.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1249982df86dc57155fdbaacecb3dc09d28fdbb19632b1294fd2ddd8f0274dd",
                "md5": "546663c08b6a3eb071728f74cb5567d6",
                "sha256": "7a5d83efc109ceddb99abd2c1316298ced2adb4570410defe766851a804fcd5b"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "546663c08b6a3eb071728f74cb5567d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1777081,
            "upload_time": "2024-04-11T13:57:55",
            "upload_time_iso_8601": "2024-04-11T13:57:55.796573Z",
            "url": "https://files.pythonhosted.org/packages/d1/24/9982df86dc57155fdbaacecb3dc09d28fdbb19632b1294fd2ddd8f0274dd/pydantic_core-2.18.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "116ebf01c6a8133a4ad0b2bb1f6b20acd36a6aefab8ab8e098c6a9d66db1d303",
                "md5": "f8039a9d44cb92ecddca9fe67f2c4ea6",
                "sha256": "5f7973c381283783cd1043a8c8f61ea5ce7a3a58b0369f0ee0ee975eaf2f2a1b"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f8039a9d44cb92ecddca9fe67f2c4ea6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1816844,
            "upload_time": "2024-04-11T13:57:58",
            "upload_time_iso_8601": "2024-04-11T13:57:58.525923Z",
            "url": "https://files.pythonhosted.org/packages/11/6e/bf01c6a8133a4ad0b2bb1f6b20acd36a6aefab8ab8e098c6a9d66db1d303/pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81a0fa3f3f5e734fc479cd1cc9cd19fa18d6061b20dc71d100518f1bfad6562e",
                "md5": "9c8ed1db8f4285034906bc72d2f40595",
                "sha256": "54c7375c62190a7845091f521add19b0f026bcf6ae674bdb89f296972272e86d"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9c8ed1db8f4285034906bc72d2f40595",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1803564,
            "upload_time": "2024-04-11T13:58:02",
            "upload_time_iso_8601": "2024-04-11T13:58:02.227528Z",
            "url": "https://files.pythonhosted.org/packages/81/a0/fa3f3f5e734fc479cd1cc9cd19fa18d6061b20dc71d100518f1bfad6562e/pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a81920dc20b01b4db1c95e868a0129f2ac28f93b05c7036ffa405216529cc01e",
                "md5": "7fe6a74c534d272e6a1f8f12c408ab04",
                "sha256": "dd63cec4e26e790b70544ae5cc48d11b515b09e05fdd5eff12e3195f54b8a586"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7fe6a74c534d272e6a1f8f12c408ab04",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2007228,
            "upload_time": "2024-04-11T13:58:06",
            "upload_time_iso_8601": "2024-04-11T13:58:06.084835Z",
            "url": "https://files.pythonhosted.org/packages/a8/19/20dc20b01b4db1c95e868a0129f2ac28f93b05c7036ffa405216529cc01e/pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19bfa278b78c06c3032e4ad855e913f47d09b9be9a4a3ab904b0d3c5978efe29",
                "md5": "dac1294055fb4de501a0d8e0799887c8",
                "sha256": "561cf62c8a3498406495cfc49eee086ed2bb186d08bcc65812b75fda42c38294"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "dac1294055fb4de501a0d8e0799887c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2975031,
            "upload_time": "2024-04-11T13:58:09",
            "upload_time_iso_8601": "2024-04-11T13:58:09.525815Z",
            "url": "https://files.pythonhosted.org/packages/19/bf/a278b78c06c3032e4ad855e913f47d09b9be9a4a3ab904b0d3c5978efe29/pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0a55519e8416e85c58f0c06218310220acdd6c210d154e75da99ec4f5f0aca3",
                "md5": "4cb4fcd410f4f98b2cd214bd640b993b",
                "sha256": "68717c38a68e37af87c4da20e08f3e27d7e4212e99e96c3d875fbf3f4812abfc"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4cb4fcd410f4f98b2cd214bd640b993b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2052541,
            "upload_time": "2024-04-11T13:58:12",
            "upload_time_iso_8601": "2024-04-11T13:58:12.671620Z",
            "url": "https://files.pythonhosted.org/packages/b0/a5/5519e8416e85c58f0c06218310220acdd6c210d154e75da99ec4f5f0aca3/pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "668d249ffe03d7dd35b410c550a5d6fba1ff3dfc86af72c5f960118ce67c62dc",
                "md5": "09588add7cd474d15f4b9ca523003a9d",
                "sha256": "2d5728e93d28a3c63ee513d9ffbac9c5989de8c76e049dbcb5bfe4b923a9739d"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "09588add7cd474d15f4b9ca523003a9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1925002,
            "upload_time": "2024-04-11T13:58:16",
            "upload_time_iso_8601": "2024-04-11T13:58:16.017977Z",
            "url": "https://files.pythonhosted.org/packages/66/8d/249ffe03d7dd35b410c550a5d6fba1ff3dfc86af72c5f960118ce67c62dc/pydantic_core-2.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb847164a8013131a6d009c7d0259c6af5e398722bef69e71cfc29603fce7013",
                "md5": "87d25c03642152a6dbc11d6a4c59ba9f",
                "sha256": "f0f17814c505f07806e22b28856c59ac80cee7dd0fbb152aed273e116378f519"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "87d25c03642152a6dbc11d6a4c59ba9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1994275,
            "upload_time": "2024-04-11T13:58:18",
            "upload_time_iso_8601": "2024-04-11T13:58:18.743574Z",
            "url": "https://files.pythonhosted.org/packages/cb/84/7164a8013131a6d009c7d0259c6af5e398722bef69e71cfc29603fce7013/pydantic_core-2.18.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33d4a18896c42f643dc90e637ca09f693545bb17d7f3d433635389a15b54f93f",
                "md5": "a7d524e6bb51933edf25b21d87d381b1",
                "sha256": "d816f44a51ba5175394bc6c7879ca0bd2be560b2c9e9f3411ef3a4cbe644c2e9"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7d524e6bb51933edf25b21d87d381b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2121029,
            "upload_time": "2024-04-11T13:58:20",
            "upload_time_iso_8601": "2024-04-11T13:58:20.919769Z",
            "url": "https://files.pythonhosted.org/packages/33/d4/a18896c42f643dc90e637ca09f693545bb17d7f3d433635389a15b54f93f/pydantic_core-2.18.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b0d4d0301c1972a4cb7f9a237b3487639d97ab8f6054ce09aa363a65064dc09",
                "md5": "5611c9821a411d7cce4593531916b8ff",
                "sha256": "09f03dfc0ef8c22622eaa8608caa4a1e189cfb83ce847045eca34f690895eccb"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "5611c9821a411d7cce4593531916b8ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1723184,
            "upload_time": "2024-04-11T13:58:23",
            "upload_time_iso_8601": "2024-04-11T13:58:23.002324Z",
            "url": "https://files.pythonhosted.org/packages/9b/0d/4d0301c1972a4cb7f9a237b3487639d97ab8f6054ce09aa363a65064dc09/pydantic_core-2.18.1-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "659c04371826c287b9e0233b2a7c910ea0275a41d6a9574e186a43ead32cd22c",
                "md5": "815ebeec49069458997b25d02c45a02e",
                "sha256": "27f1009dc292f3b7ca77feb3571c537276b9aad5dd4efb471ac88a8bd09024e9"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "815ebeec49069458997b25d02c45a02e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1916039,
            "upload_time": "2024-04-11T13:58:25",
            "upload_time_iso_8601": "2024-04-11T13:58:25.055871Z",
            "url": "https://files.pythonhosted.org/packages/65/9c/04371826c287b9e0233b2a7c910ea0275a41d6a9574e186a43ead32cd22c/pydantic_core-2.18.1-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27d45e68cd56b7ad565cbbf0e2ee94619cccf470d969302cd0e78d47a5d34a96",
                "md5": "1e5b9322bad6d4cc2c1c72b750fd1535",
                "sha256": "48dd883db92e92519201f2b01cafa881e5f7125666141a49ffba8b9facc072b0"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp311-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "1e5b9322bad6d4cc2c1c72b750fd1535",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1800131,
            "upload_time": "2024-04-11T13:58:28",
            "upload_time_iso_8601": "2024-04-11T13:58:28.375670Z",
            "url": "https://files.pythonhosted.org/packages/27/d4/5e68cd56b7ad565cbbf0e2ee94619cccf470d969302cd0e78d47a5d34a96/pydantic_core-2.18.1-cp311-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6dd203d621d7987070cedecf038389f064dfceaed6051016ff917f100fe001f",
                "md5": "d028ce0d8b552c35002ae74a9856c7c1",
                "sha256": "b6b0e4912030c6f28bcb72b9ebe4989d6dc2eebcd2a9cdc35fefc38052dd4fe8"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d028ce0d8b552c35002ae74a9856c7c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1851918,
            "upload_time": "2024-04-11T13:58:30",
            "upload_time_iso_8601": "2024-04-11T13:58:30.817389Z",
            "url": "https://files.pythonhosted.org/packages/c6/dd/203d621d7987070cedecf038389f064dfceaed6051016ff917f100fe001f/pydantic_core-2.18.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69fccb2c438c671a4cfd73b65e68399a1260466e08bb71dd16e8189e4f620015",
                "md5": "d957ee3e06392c44006711798f485e4c",
                "sha256": "f3202a429fe825b699c57892d4371c74cc3456d8d71b7f35d6028c96dfecad31"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d957ee3e06392c44006711798f485e4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1770396,
            "upload_time": "2024-04-11T13:58:33",
            "upload_time_iso_8601": "2024-04-11T13:58:33.888735Z",
            "url": "https://files.pythonhosted.org/packages/69/fc/cb2c438c671a4cfd73b65e68399a1260466e08bb71dd16e8189e4f620015/pydantic_core-2.18.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "240279d6165dd8c33ee69901f0d7ef568658e586f765ac11da25cf6bb5b2c6fb",
                "md5": "39f2a7fbf9a8d4f6c156f56c969df5d9",
                "sha256": "a3982b0a32d0a88b3907e4b0dc36809fda477f0757c59a505d4e9b455f384b8b"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "39f2a7fbf9a8d4f6c156f56c969df5d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1810487,
            "upload_time": "2024-04-11T13:58:36",
            "upload_time_iso_8601": "2024-04-11T13:58:36.816148Z",
            "url": "https://files.pythonhosted.org/packages/24/02/79d6165dd8c33ee69901f0d7ef568658e586f765ac11da25cf6bb5b2c6fb/pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a55505992e7ebb05af9b58847975ae7cef398441679d7602b139de0634452d4",
                "md5": "84cf43f1e1df6e815d9f4e80b92385a9",
                "sha256": "25595ac311f20e5324d1941909b0d12933f1fd2171075fcff763e90f43e92a0d"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "84cf43f1e1df6e815d9f4e80b92385a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1792556,
            "upload_time": "2024-04-11T13:58:39",
            "upload_time_iso_8601": "2024-04-11T13:58:39.297744Z",
            "url": "https://files.pythonhosted.org/packages/1a/55/505992e7ebb05af9b58847975ae7cef398441679d7602b139de0634452d4/pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75480ae681a6198e5f4253d3a90a262a7965fccb7c58770065d457a5d2ba3be6",
                "md5": "96c825ae58fd68615e6719e096a96bbf",
                "sha256": "14fe73881cf8e4cbdaded8ca0aa671635b597e42447fec7060d0868b52d074e6"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "96c825ae58fd68615e6719e096a96bbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2016101,
            "upload_time": "2024-04-11T13:58:41",
            "upload_time_iso_8601": "2024-04-11T13:58:41.717497Z",
            "url": "https://files.pythonhosted.org/packages/75/48/0ae681a6198e5f4253d3a90a262a7965fccb7c58770065d457a5d2ba3be6/pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e3d036ccc8e039593012e942f513f8937a64b91a500d2c7d88f4744d9c430fc",
                "md5": "f89e928f6a9be1efe29bab2a05ea59a6",
                "sha256": "ca976884ce34070799e4dfc6fbd68cb1d181db1eefe4a3a94798ddfb34b8867f"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f89e928f6a9be1efe29bab2a05ea59a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2876333,
            "upload_time": "2024-04-11T13:58:43",
            "upload_time_iso_8601": "2024-04-11T13:58:43.966280Z",
            "url": "https://files.pythonhosted.org/packages/9e/3d/036ccc8e039593012e942f513f8937a64b91a500d2c7d88f4744d9c430fc/pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24a24b135f51ca5c0f91fa3cb5b880068e10b23f1bada653f9c14cb5154842db",
                "md5": "67af1b759f9ff05421a1894ef5d1a4e0",
                "sha256": "684d840d2c9ec5de9cb397fcb3f36d5ebb6fa0d94734f9886032dd796c1ead06"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67af1b759f9ff05421a1894ef5d1a4e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2078707,
            "upload_time": "2024-04-11T13:58:46",
            "upload_time_iso_8601": "2024-04-11T13:58:46.383170Z",
            "url": "https://files.pythonhosted.org/packages/24/a2/4b135f51ca5c0f91fa3cb5b880068e10b23f1bada653f9c14cb5154842db/pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25ab4113bedb56e67ab28d9da7552dc08b67b6b2ceb61876ff57ebce98eca265",
                "md5": "daee7351c5402904611e454c7f52cc0c",
                "sha256": "54764c083bbe0264f0f746cefcded6cb08fbbaaf1ad1d78fb8a4c30cff999a90"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "daee7351c5402904611e454c7f52cc0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1923971,
            "upload_time": "2024-04-11T13:58:48",
            "upload_time_iso_8601": "2024-04-11T13:58:48.623694Z",
            "url": "https://files.pythonhosted.org/packages/25/ab/4113bedb56e67ab28d9da7552dc08b67b6b2ceb61876ff57ebce98eca265/pydantic_core-2.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e5fbf7d64e781bebe87af8ae834e269f85cb2328c9c7d22110bb152252abbd1",
                "md5": "b038da3f241ad58e20081ca71a63887c",
                "sha256": "201713f2f462e5c015b343e86e68bd8a530a4f76609b33d8f0ec65d2b921712a"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b038da3f241ad58e20081ca71a63887c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1990388,
            "upload_time": "2024-04-11T13:58:51",
            "upload_time_iso_8601": "2024-04-11T13:58:51.348504Z",
            "url": "https://files.pythonhosted.org/packages/1e/5f/bf7d64e781bebe87af8ae834e269f85cb2328c9c7d22110bb152252abbd1/pydantic_core-2.18.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a70998b197d7ce8e34baf3922deccefc3e5ba774f821713841cfe350f04df753",
                "md5": "04506acdf84c7d418a16de957ed214a2",
                "sha256": "fd1a9edb9dd9d79fbeac1ea1f9a8dd527a6113b18d2e9bcc0d541d308dae639b"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04506acdf84c7d418a16de957ed214a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2124610,
            "upload_time": "2024-04-11T13:58:53",
            "upload_time_iso_8601": "2024-04-11T13:58:53.622355Z",
            "url": "https://files.pythonhosted.org/packages/a7/09/98b197d7ce8e34baf3922deccefc3e5ba774f821713841cfe350f04df753/pydantic_core-2.18.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd316503b3fad7f695dfaaec134c277ff570a548027a590ab585155c8781293f",
                "md5": "e10275f204a7c025315b114d03d552f1",
                "sha256": "d5e6b7155b8197b329dc787356cfd2684c9d6a6b1a197f6bbf45f5555a98d411"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e10275f204a7c025315b114d03d552f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1744264,
            "upload_time": "2024-04-11T13:58:56",
            "upload_time_iso_8601": "2024-04-11T13:58:56.807120Z",
            "url": "https://files.pythonhosted.org/packages/cd/31/6503b3fad7f695dfaaec134c277ff570a548027a590ab585155c8781293f/pydantic_core-2.18.1-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "203f763b9e6111d5f2c7c14008264049c7f18700f921ed81f461fcd6e9466618",
                "md5": "888531b1317b2efdd7610376626f3419",
                "sha256": "9376d83d686ec62e8b19c0ac3bf8d28d8a5981d0df290196fb6ef24d8a26f0d6"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "888531b1317b2efdd7610376626f3419",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1915681,
            "upload_time": "2024-04-11T13:58:58",
            "upload_time_iso_8601": "2024-04-11T13:58:58.907465Z",
            "url": "https://files.pythonhosted.org/packages/20/3f/763b9e6111d5f2c7c14008264049c7f18700f921ed81f461fcd6e9466618/pydantic_core-2.18.1-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3dd00073546bc90805c73bc5995b9760db3c1bacfa0d3d38965e6d97b58b9fe1",
                "md5": "7ad68397089367c71d2b670dcfb327a9",
                "sha256": "c562b49c96906b4029b5685075fe1ebd3b5cc2601dfa0b9e16c2c09d6cbce048"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp312-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "7ad68397089367c71d2b670dcfb327a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1809595,
            "upload_time": "2024-04-11T13:59:01",
            "upload_time_iso_8601": "2024-04-11T13:59:01.575405Z",
            "url": "https://files.pythonhosted.org/packages/3d/d0/0073546bc90805c73bc5995b9760db3c1bacfa0d3d38965e6d97b58b9fe1/pydantic_core-2.18.1-cp312-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b597bf4d4ce90f5be1ace8a67530a45cb795830c88a475e9ccc3893633665346",
                "md5": "3199902727fdc2de2d21c0441507f7f0",
                "sha256": "3e352f0191d99fe617371096845070dee295444979efb8f27ad941227de6ad09"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3199902727fdc2de2d21c0441507f7f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1858812,
            "upload_time": "2024-04-11T13:59:04",
            "upload_time_iso_8601": "2024-04-11T13:59:04.763458Z",
            "url": "https://files.pythonhosted.org/packages/b5/97/bf4d4ce90f5be1ace8a67530a45cb795830c88a475e9ccc3893633665346/pydantic_core-2.18.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08e62277027d23aa6554aa51812c002ce80aba135490b89bdd746416cbf2108b",
                "md5": "bfff80efa9a19594a58b8131b7da15a0",
                "sha256": "c0295d52b012cbe0d3059b1dba99159c3be55e632aae1999ab74ae2bd86a33d7"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bfff80efa9a19594a58b8131b7da15a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1746691,
            "upload_time": "2024-04-11T13:59:07",
            "upload_time_iso_8601": "2024-04-11T13:59:07.161048Z",
            "url": "https://files.pythonhosted.org/packages/08/e6/2277027d23aa6554aa51812c002ce80aba135490b89bdd746416cbf2108b/pydantic_core-2.18.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbd4500d7f077cb3df524cc510952dc946c7f6f69032c7e5d33db86464cea82f",
                "md5": "baba1c82fff4709e9e1bc3eb5d4b2e59",
                "sha256": "56823a92075780582d1ffd4489a2e61d56fd3ebb4b40b713d63f96dd92d28144"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "baba1c82fff4709e9e1bc3eb5d4b2e59",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1818579,
            "upload_time": "2024-04-11T13:59:09",
            "upload_time_iso_8601": "2024-04-11T13:59:09.665960Z",
            "url": "https://files.pythonhosted.org/packages/bb/d4/500d7f077cb3df524cc510952dc946c7f6f69032c7e5d33db86464cea82f/pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee449d7af93ce67cb5c97c53435515ac5a4175a97d209d8827b00e7d7286a356",
                "md5": "c5728ea6474b69a0582df28986f77e98",
                "sha256": "dd3f79e17b56741b5177bcc36307750d50ea0698df6aa82f69c7db32d968c1c2"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c5728ea6474b69a0582df28986f77e98",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1804965,
            "upload_time": "2024-04-11T13:59:11",
            "upload_time_iso_8601": "2024-04-11T13:59:11.975841Z",
            "url": "https://files.pythonhosted.org/packages/ee/44/9d7af93ce67cb5c97c53435515ac5a4175a97d209d8827b00e7d7286a356/pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bec135062b996f753e359f4161b35b26e4f9646251b124cf99303982bca1ef6",
                "md5": "62a7954cfc06b8a9faa72d7bbffccbc5",
                "sha256": "38a5024de321d672a132b1834a66eeb7931959c59964b777e8f32dbe9523f6b1"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "62a7954cfc06b8a9faa72d7bbffccbc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2009082,
            "upload_time": "2024-04-11T13:59:14",
            "upload_time_iso_8601": "2024-04-11T13:59:14.223469Z",
            "url": "https://files.pythonhosted.org/packages/5b/ec/135062b996f753e359f4161b35b26e4f9646251b124cf99303982bca1ef6/pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2651a132e23580c34b23548666088e0bbfcb1e6d72095c2e17a4f97c95ee8ba5",
                "md5": "4e156c2bf0a29a33dcf3fa1b8f8b2cd6",
                "sha256": "d2ce426ee691319d4767748c8e0895cfc56593d725594e415f274059bcf3cb76"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4e156c2bf0a29a33dcf3fa1b8f8b2cd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2976981,
            "upload_time": "2024-04-11T13:59:17",
            "upload_time_iso_8601": "2024-04-11T13:59:17.233476Z",
            "url": "https://files.pythonhosted.org/packages/26/51/a132e23580c34b23548666088e0bbfcb1e6d72095c2e17a4f97c95ee8ba5/pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "882f756bbc9da274297a4bca282b90aaae09ae201355dae248d4d52a6aae6184",
                "md5": "463198007e5d8b806b22c9b1304be293",
                "sha256": "2adaeea59849ec0939af5c5d476935f2bab4b7f0335b0110f0f069a41024278e"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "463198007e5d8b806b22c9b1304be293",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2054511,
            "upload_time": "2024-04-11T13:59:20",
            "upload_time_iso_8601": "2024-04-11T13:59:20.102090Z",
            "url": "https://files.pythonhosted.org/packages/88/2f/756bbc9da274297a4bca282b90aaae09ae201355dae248d4d52a6aae6184/pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fff319c3b7dc0ba66f0fc6506a0d9f7c1a403693a213bbc6a39b82dbac16c972",
                "md5": "92d42a8cc7b07621a520add0926aaa35",
                "sha256": "9b6431559676a1079eac0f52d6d0721fb8e3c5ba43c37bc537c8c83724031feb"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "92d42a8cc7b07621a520add0926aaa35",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1925972,
            "upload_time": "2024-04-11T13:59:22",
            "upload_time_iso_8601": "2024-04-11T13:59:22.604297Z",
            "url": "https://files.pythonhosted.org/packages/ff/f3/19c3b7dc0ba66f0fc6506a0d9f7c1a403693a213bbc6a39b82dbac16c972/pydantic_core-2.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df6f5010d48eb98bb017f5fd9be0b9d88282558f75101487b701bcc9cf928caa",
                "md5": "9296a36e6623a3b9fd165714a981fd13",
                "sha256": "85233abb44bc18d16e72dc05bf13848a36f363f83757541f1a97db2f8d58cfd9"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9296a36e6623a3b9fd165714a981fd13",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1996264,
            "upload_time": "2024-04-11T13:59:25",
            "upload_time_iso_8601": "2024-04-11T13:59:25.240811Z",
            "url": "https://files.pythonhosted.org/packages/df/6f/5010d48eb98bb017f5fd9be0b9d88282558f75101487b701bcc9cf928caa/pydantic_core-2.18.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05da0b11133b9aa11b40422dca3c424b7699a84a6c4e66f64230106b9e957fd8",
                "md5": "0368f53fb5d43f0bea361c98305aaee3",
                "sha256": "641a018af4fe48be57a2b3d7a1f0f5dbca07c1d00951d3d7463f0ac9dac66622"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0368f53fb5d43f0bea361c98305aaee3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2122959,
            "upload_time": "2024-04-11T13:59:27",
            "upload_time_iso_8601": "2024-04-11T13:59:27.551231Z",
            "url": "https://files.pythonhosted.org/packages/05/da/0b11133b9aa11b40422dca3c424b7699a84a6c4e66f64230106b9e957fd8/pydantic_core-2.18.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ac0fd4293f3bdc69916ef8e08949594d139236d54feb3069bbb2ea41b800a41",
                "md5": "b64181ac23bccfccee108fa2758ea59c",
                "sha256": "63d7523cd95d2fde0d28dc42968ac731b5bb1e516cc56b93a50ab293f4daeaad"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b64181ac23bccfccee108fa2758ea59c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1723292,
            "upload_time": "2024-04-11T13:59:29",
            "upload_time_iso_8601": "2024-04-11T13:59:29.947552Z",
            "url": "https://files.pythonhosted.org/packages/7a/c0/fd4293f3bdc69916ef8e08949594d139236d54feb3069bbb2ea41b800a41/pydantic_core-2.18.1-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32bd8717a05cb836e21f71cda538ec73dd3efc2c40f163a2adcef3cc55f33713",
                "md5": "f752f8be92cf5a72f12d267bcba65a74",
                "sha256": "907a4d7720abfcb1c81619863efd47c8a85d26a257a2dbebdb87c3b847df0278"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f752f8be92cf5a72f12d267bcba65a74",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1916995,
            "upload_time": "2024-04-11T13:59:32",
            "upload_time_iso_8601": "2024-04-11T13:59:32.418165Z",
            "url": "https://files.pythonhosted.org/packages/32/bd/8717a05cb836e21f71cda538ec73dd3efc2c40f163a2adcef3cc55f33713/pydantic_core-2.18.1-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92b38762c3f2c40f951a7467db969148ba1f732644371266bd15dd73a5d44619",
                "md5": "5e2c8caa449e4dc08ad683cd99877694",
                "sha256": "aad17e462f42ddbef5984d70c40bfc4146c322a2da79715932cd8976317054de"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e2c8caa449e4dc08ad683cd99877694",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1858662,
            "upload_time": "2024-04-11T13:59:34",
            "upload_time_iso_8601": "2024-04-11T13:59:34.656625Z",
            "url": "https://files.pythonhosted.org/packages/92/b3/8762c3f2c40f951a7467db969148ba1f732644371266bd15dd73a5d44619/pydantic_core-2.18.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47441000c87754fcbd00584984aa86705e6d0e2a10427559adf925210c13df57",
                "md5": "6655e9965f89e31a94b50ea1df2dcfb3",
                "sha256": "94b9769ba435b598b547c762184bcfc4783d0d4c7771b04a3b45775c3589ca44"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6655e9965f89e31a94b50ea1df2dcfb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1746211,
            "upload_time": "2024-04-11T13:59:37",
            "upload_time_iso_8601": "2024-04-11T13:59:37.606499Z",
            "url": "https://files.pythonhosted.org/packages/47/44/1000c87754fcbd00584984aa86705e6d0e2a10427559adf925210c13df57/pydantic_core-2.18.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c689ec19032a75938f9f0e9d1564a498369c320bdcf260f1d895ca58daedf0b5",
                "md5": "28372f3a22b4c22a27d2f0d6367faa3c",
                "sha256": "80e0e57cc704a52fb1b48f16d5b2c8818da087dbee6f98d9bf19546930dc64b5"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "28372f3a22b4c22a27d2f0d6367faa3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1818625,
            "upload_time": "2024-04-11T13:59:40",
            "upload_time_iso_8601": "2024-04-11T13:59:40.115566Z",
            "url": "https://files.pythonhosted.org/packages/c6/89/ec19032a75938f9f0e9d1564a498369c320bdcf260f1d895ca58daedf0b5/pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9dcc8d18d373e684ac0f45874f6220e6ab82c945bb3c9cab56ca6922a3be1a3b",
                "md5": "d865168c405b302fb3db2e962f80f8de",
                "sha256": "76b86e24039c35280ceee6dce7e62945eb93a5175d43689ba98360ab31eebc4a"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d865168c405b302fb3db2e962f80f8de",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1804637,
            "upload_time": "2024-04-11T13:59:42",
            "upload_time_iso_8601": "2024-04-11T13:59:42.942383Z",
            "url": "https://files.pythonhosted.org/packages/9d/cc/8d18d373e684ac0f45874f6220e6ab82c945bb3c9cab56ca6922a3be1a3b/pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2b3055d29a223158388c4b0392d274f54e87ab5e003bc2d3282be538a2a0f54",
                "md5": "e936fc3b8a1f692f6116ec5c92e857f5",
                "sha256": "12a05db5013ec0ca4a32cc6433f53faa2a014ec364031408540ba858c2172bb0"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e936fc3b8a1f692f6116ec5c92e857f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2008858,
            "upload_time": "2024-04-11T13:59:45",
            "upload_time_iso_8601": "2024-04-11T13:59:45.573383Z",
            "url": "https://files.pythonhosted.org/packages/d2/b3/055d29a223158388c4b0392d274f54e87ab5e003bc2d3282be538a2a0f54/pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a58de5ca7c9837f2cf759a8b71f90ebff2965e46e80cbead691433cc6bbec26d",
                "md5": "a920389e64a91ce3f8f6a0673bd84028",
                "sha256": "250ae39445cb5475e483a36b1061af1bc233de3e9ad0f4f76a71b66231b07f88"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a920389e64a91ce3f8f6a0673bd84028",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2974703,
            "upload_time": "2024-04-11T13:59:48",
            "upload_time_iso_8601": "2024-04-11T13:59:48.621804Z",
            "url": "https://files.pythonhosted.org/packages/a5/8d/e5ca7c9837f2cf759a8b71f90ebff2965e46e80cbead691433cc6bbec26d/pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d524870ef6e6d31abac14f686c45ea7d524fbd8b51082aeab5533c86dd97595",
                "md5": "219820199a5453a5fbdc3a13e0e97743",
                "sha256": "a32204489259786a923e02990249c65b0f17235073149d0033efcebe80095570"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "219820199a5453a5fbdc3a13e0e97743",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2054777,
            "upload_time": "2024-04-11T13:59:50",
            "upload_time_iso_8601": "2024-04-11T13:59:50.937875Z",
            "url": "https://files.pythonhosted.org/packages/1d/52/4870ef6e6d31abac14f686c45ea7d524fbd8b51082aeab5533c86dd97595/pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a47029ce7cb6c4a4261eaaf4fa0e164152cfdc1aea1cd5df53951f204324311c",
                "md5": "abf6a4d1d2d79c1b20b8e1edccb0cd05",
                "sha256": "6395a4435fa26519fd96fdccb77e9d00ddae9dd6c742309bd0b5610609ad7fb2"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "abf6a4d1d2d79c1b20b8e1edccb0cd05",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1925872,
            "upload_time": "2024-04-11T13:59:53",
            "upload_time_iso_8601": "2024-04-11T13:59:53.963461Z",
            "url": "https://files.pythonhosted.org/packages/a4/70/29ce7cb6c4a4261eaaf4fa0e164152cfdc1aea1cd5df53951f204324311c/pydantic_core-2.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ac2554048ede216727ca3c47dbef0448f5c1466e9b0c333841c82bf817feb2c",
                "md5": "35ced83bb7675d23d9a34f3a3aeb19f8",
                "sha256": "2533ad2883f001efa72f3d0e733fb846710c3af6dcdd544fe5bf14fa5fe2d7db"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "35ced83bb7675d23d9a34f3a3aeb19f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1996022,
            "upload_time": "2024-04-11T13:59:56",
            "upload_time_iso_8601": "2024-04-11T13:59:56.171461Z",
            "url": "https://files.pythonhosted.org/packages/9a/c2/554048ede216727ca3c47dbef0448f5c1466e9b0c333841c82bf817feb2c/pydantic_core-2.18.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1c3473e457b13c5e1ff45bc767aae4b040eabd499aab5502963d941e61288d0",
                "md5": "90558bb3efbb14e5d2552c70e00a3e4c",
                "sha256": "b560b72ed4816aee52783c66854d96157fd8175631f01ef58e894cc57c84f0f6"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90558bb3efbb14e5d2552c70e00a3e4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2122578,
            "upload_time": "2024-04-11T13:59:59",
            "upload_time_iso_8601": "2024-04-11T13:59:59.384983Z",
            "url": "https://files.pythonhosted.org/packages/c1/c3/473e457b13c5e1ff45bc767aae4b040eabd499aab5502963d941e61288d0/pydantic_core-2.18.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b510f108a80f2a117e427a1ba4e6ea7dec82a9a97eda1daa9006ac076efd4495",
                "md5": "7e224ea86a614161948e03e8c22dfb81",
                "sha256": "582cf2cead97c9e382a7f4d3b744cf0ef1a6e815e44d3aa81af3ad98762f5a9b"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "7e224ea86a614161948e03e8c22dfb81",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1723143,
            "upload_time": "2024-04-11T14:00:07",
            "upload_time_iso_8601": "2024-04-11T14:00:07.663350Z",
            "url": "https://files.pythonhosted.org/packages/b5/10/f108a80f2a117e427a1ba4e6ea7dec82a9a97eda1daa9006ac076efd4495/pydantic_core-2.18.1-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5808032e7945199e26fad153612989b96176cff44cc7a3edddf980fe937ef71a",
                "md5": "0897d908c362416b6df3b944ceee5927",
                "sha256": "ca71d501629d1fa50ea7fa3b08ba884fe10cefc559f5c6c8dfe9036c16e8ae89"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0897d908c362416b6df3b944ceee5927",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1917709,
            "upload_time": "2024-04-11T14:00:12",
            "upload_time_iso_8601": "2024-04-11T14:00:12.568096Z",
            "url": "https://files.pythonhosted.org/packages/58/08/032e7945199e26fad153612989b96176cff44cc7a3edddf980fe937ef71a/pydantic_core-2.18.1-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10931ff97e426b503e06f3e22014c1fc949d2307ede88dcd4448b1af8ff46152",
                "md5": "109f54299cc698a1e63de768ece2cf11",
                "sha256": "e178e5b66a06ec5bf51668ec0d4ac8cfb2bdcb553b2c207d58148340efd00143"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "109f54299cc698a1e63de768ece2cf11",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1857066,
            "upload_time": "2024-04-11T14:00:16",
            "upload_time_iso_8601": "2024-04-11T14:00:16.379444Z",
            "url": "https://files.pythonhosted.org/packages/10/93/1ff97e426b503e06f3e22014c1fc949d2307ede88dcd4448b1af8ff46152/pydantic_core-2.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1728ccada689bc7bf061027791a709ea64bfd94462d9c6ea68f0dd241fcd177c",
                "md5": "7e80d7d10eebac4ed36cbb62671f0044",
                "sha256": "72722ce529a76a4637a60be18bd789d8fb871e84472490ed7ddff62d5fed620d"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7e80d7d10eebac4ed36cbb62671f0044",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1745689,
            "upload_time": "2024-04-11T14:00:19",
            "upload_time_iso_8601": "2024-04-11T14:00:19.667694Z",
            "url": "https://files.pythonhosted.org/packages/17/28/ccada689bc7bf061027791a709ea64bfd94462d9c6ea68f0dd241fcd177c/pydantic_core-2.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01789ec44019faf97fa54c5fb822900bfb3afe36d2951ca67db8c8354b8057bc",
                "md5": "af431cd4aa835191ddf5993f1065ec88",
                "sha256": "2fe0c1ce5b129455e43f941f7a46f61f3d3861e571f2905d55cdbb8b5c6f5e2c"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "af431cd4aa835191ddf5993f1065ec88",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1816291,
            "upload_time": "2024-04-11T14:00:22",
            "upload_time_iso_8601": "2024-04-11T14:00:22.460284Z",
            "url": "https://files.pythonhosted.org/packages/01/78/9ec44019faf97fa54c5fb822900bfb3afe36d2951ca67db8c8354b8057bc/pydantic_core-2.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d79c2870d914e3412a02fd0b3b1d8249df0b65dadc3f04a74bfaf73d1bc03a1",
                "md5": "c2d527ea00665965be7776380f227fad",
                "sha256": "d4284c621f06a72ce2cb55f74ea3150113d926a6eb78ab38340c08f770eb9b4d"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2d527ea00665965be7776380f227fad",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1948491,
            "upload_time": "2024-04-11T14:00:25",
            "upload_time_iso_8601": "2024-04-11T14:00:25.276949Z",
            "url": "https://files.pythonhosted.org/packages/0d/79/c2870d914e3412a02fd0b3b1d8249df0b65dadc3f04a74bfaf73d1bc03a1/pydantic_core-2.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81ac49af7457c9fcb70581e5cc8a16ba89e366898698497bd7580337cbba7560",
                "md5": "2850d11429873a3dd4b4b5a028cd4a06",
                "sha256": "1a0c3e718f4e064efde68092d9d974e39572c14e56726ecfaeebbe6544521f47"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2850d11429873a3dd4b4b5a028cd4a06",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1923234,
            "upload_time": "2024-04-11T14:00:28",
            "upload_time_iso_8601": "2024-04-11T14:00:28.930438Z",
            "url": "https://files.pythonhosted.org/packages/81/ac/49af7457c9fcb70581e5cc8a16ba89e366898698497bd7580337cbba7560/pydantic_core-2.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1af3d897540120315437d2b6e57a0be537e8f0a11a62efb3b58ea03348701ec",
                "md5": "4ab69b8b1f467556cf3532919f968548",
                "sha256": "2027493cc44c23b598cfaf200936110433d9caa84e2c6cf487a83999638a96ac"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4ab69b8b1f467556cf3532919f968548",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1993422,
            "upload_time": "2024-04-11T14:00:32",
            "upload_time_iso_8601": "2024-04-11T14:00:32.551675Z",
            "url": "https://files.pythonhosted.org/packages/e1/af/3d897540120315437d2b6e57a0be537e8f0a11a62efb3b58ea03348701ec/pydantic_core-2.18.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f527e44cf6932f0b720ded94d303d1d806d1b56649ee381b0302578a79c18b9",
                "md5": "938211cec6735fe59e9687a374d60527",
                "sha256": "76909849d1a6bffa5a07742294f3fa1d357dc917cb1fe7b470afbc3a7579d539"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "938211cec6735fe59e9687a374d60527",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2120411,
            "upload_time": "2024-04-11T14:00:36",
            "upload_time_iso_8601": "2024-04-11T14:00:36.189454Z",
            "url": "https://files.pythonhosted.org/packages/8f/52/7e44cf6932f0b720ded94d303d1d806d1b56649ee381b0302578a79c18b9/pydantic_core-2.18.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c63f0d99c4d0e66d0a93c533767054e9496d776d4570d9c472bc7595a4c6aec1",
                "md5": "8f48b08c0d1e516353954377381893b7",
                "sha256": "ee7ccc7fb7e921d767f853b47814c3048c7de536663e82fbc37f5eb0d532224b"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8f48b08c0d1e516353954377381893b7",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1919269,
            "upload_time": "2024-04-11T14:00:39",
            "upload_time_iso_8601": "2024-04-11T14:00:39.866448Z",
            "url": "https://files.pythonhosted.org/packages/c6/3f/0d99c4d0e66d0a93c533767054e9496d776d4570d9c472bc7595a4c6aec1/pydantic_core-2.18.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7c9d2099c7835f9921f442f2eda76110dd5984c724723aec9efd4b63495b412",
                "md5": "d75d76923f7d0ae12db5b3c39976e2fd",
                "sha256": "ee2794111c188548a4547eccc73a6a8527fe2af6cf25e1a4ebda2fd01cdd2e60"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d75d76923f7d0ae12db5b3c39976e2fd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1857746,
            "upload_time": "2024-04-11T14:00:43",
            "upload_time_iso_8601": "2024-04-11T14:00:43.482633Z",
            "url": "https://files.pythonhosted.org/packages/e7/c9/d2099c7835f9921f442f2eda76110dd5984c724723aec9efd4b63495b412/pydantic_core-2.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b77e48d641a3c31fde874768dcc4a30f33934e00b539afa4ba99eea9879090d",
                "md5": "37b8bd3845594e95e0a361da5c66ee90",
                "sha256": "a139fe9f298dc097349fb4f28c8b81cc7a202dbfba66af0e14be5cfca4ef7ce5"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "37b8bd3845594e95e0a361da5c66ee90",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1745868,
            "upload_time": "2024-04-11T14:00:47",
            "upload_time_iso_8601": "2024-04-11T14:00:47.313001Z",
            "url": "https://files.pythonhosted.org/packages/1b/77/e48d641a3c31fde874768dcc4a30f33934e00b539afa4ba99eea9879090d/pydantic_core-2.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79cca229c9b129eb1a2cf721ec3314c32b49f11d9ce83a20fb0aa68465b1d75f",
                "md5": "54824925f5089ca7903561d46aa23ed4",
                "sha256": "d074b07a10c391fc5bbdcb37b2f16f20fcd9e51e10d01652ab298c0d07908ee2"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "54824925f5089ca7903561d46aa23ed4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1816724,
            "upload_time": "2024-04-11T14:00:50",
            "upload_time_iso_8601": "2024-04-11T14:00:50.325850Z",
            "url": "https://files.pythonhosted.org/packages/79/cc/a229c9b129eb1a2cf721ec3314c32b49f11d9ce83a20fb0aa68465b1d75f/pydantic_core-2.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f38f1b522c400099d7ab5b62172938d74443107263b026f2f88888895ffb2a6",
                "md5": "e808a75268b746e24c8113aebd881cf8",
                "sha256": "c69567ddbac186e8c0aadc1f324a60a564cfe25e43ef2ce81bcc4b8c3abffbae"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e808a75268b746e24c8113aebd881cf8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1949592,
            "upload_time": "2024-04-11T14:00:53",
            "upload_time_iso_8601": "2024-04-11T14:00:53.177889Z",
            "url": "https://files.pythonhosted.org/packages/0f/38/f1b522c400099d7ab5b62172938d74443107263b026f2f88888895ffb2a6/pydantic_core-2.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d390a25160fd437c31641c9bbb456d7aaf967c331c15f28c0315f347d8886ec6",
                "md5": "1519ba348a049ee3b7eb8b60fb1226ea",
                "sha256": "baf1c7b78cddb5af00971ad5294a4583188bda1495b13760d9f03c9483bb6203"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "1519ba348a049ee3b7eb8b60fb1226ea",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1923331,
            "upload_time": "2024-04-11T14:00:55",
            "upload_time_iso_8601": "2024-04-11T14:00:55.891702Z",
            "url": "https://files.pythonhosted.org/packages/d3/90/a25160fd437c31641c9bbb456d7aaf967c331c15f28c0315f347d8886ec6/pydantic_core-2.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "760ae846c69391a42cdaf9b0b77cd7fe111318f64c695e0bd9ad2ff8aba0e436",
                "md5": "0e75f07ce0428ac9447da02a66ab8855",
                "sha256": "2684a94fdfd1b146ff10689c6e4e815f6a01141781c493b97342cdc5b06f4d5d"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0e75f07ce0428ac9447da02a66ab8855",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1993937,
            "upload_time": "2024-04-11T14:00:58",
            "upload_time_iso_8601": "2024-04-11T14:00:58.582557Z",
            "url": "https://files.pythonhosted.org/packages/76/0a/e846c69391a42cdaf9b0b77cd7fe111318f64c695e0bd9ad2ff8aba0e436/pydantic_core-2.18.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7eaf8859f74e03991e365ed22d250195b9b3f471c4309682a5ee28bffa8b4dae",
                "md5": "09f5877a79faef6ba40edd64459064ea",
                "sha256": "73c1bc8a86a5c9e8721a088df234265317692d0b5cd9e86e975ce3bc3db62a59"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09f5877a79faef6ba40edd64459064ea",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2121453,
            "upload_time": "2024-04-11T14:01:02",
            "upload_time_iso_8601": "2024-04-11T14:01:02.163683Z",
            "url": "https://files.pythonhosted.org/packages/7e/af/8859f74e03991e365ed22d250195b9b3f471c4309682a5ee28bffa8b4dae/pydantic_core-2.18.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "549add2c99cc22311faf741f9dc1326a0a25ba96efe4997133dbebeb4718fb51",
                "md5": "e25a0baad372f3feba6fccedd888f038",
                "sha256": "e60defc3c15defb70bb38dd605ff7e0fae5f6c9c7cbfe0ad7868582cb7e844a6"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e25a0baad372f3feba6fccedd888f038",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1921463,
            "upload_time": "2024-04-11T14:01:05",
            "upload_time_iso_8601": "2024-04-11T14:01:05.873640Z",
            "url": "https://files.pythonhosted.org/packages/54/9a/dd2c99cc22311faf741f9dc1326a0a25ba96efe4997133dbebeb4718fb51/pydantic_core-2.18.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d28d693aab237fca82da327990a88a983b2b84b890032076ee4a87e18038dbb",
                "md5": "346dd1e1e3e5cded7eb078d645d89120",
                "sha256": "de9d3e8717560eb05e28739d1b35e4eac2e458553a52a301e51352a7ffc86a35"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.18.1.tar.gz",
            "has_sig": false,
            "md5_digest": "346dd1e1e3e5cded7eb078d645d89120",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 381997,
            "upload_time": "2024-04-11T14:01:08",
            "upload_time_iso_8601": "2024-04-11T14:01:08.714568Z",
            "url": "https://files.pythonhosted.org/packages/3d/28/d693aab237fca82da327990a88a983b2b84b890032076ee4a87e18038dbb/pydantic_core-2.18.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-11 14:01:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pydantic",
    "github_project": "pydantic-core",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pydantic-core"
}
        
Elapsed time: 0.30200s