pydantic-core


Namepydantic-core JSON
Version 2.27.0 PyPI version JSON
download
home_pagehttps://github.com/pydantic/pydantic-core
SummaryCore functionality for Pydantic validation and serialization
upload_time2024-11-12 18:29:44
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/d1/cd/8331ae216bcc5a3f2d4c6b941c9f63de647e2700d38133f4f7e0132a00c4/pydantic_core-2.27.0.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.27.0",
    "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": "ff978a42e9c17c305516c0d956a2887d616d3a1b0531b0053ac95a917e4a1ab7",
                "md5": "0ed8ee37bced8c5149cda05729949e84",
                "sha256": "cd2ac6b919f7fed71b17fe0b4603c092a4c9b5bae414817c9c81d3c22d1e1bcc"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ed8ee37bced8c5149cda05729949e84",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1893954,
            "upload_time": "2024-11-12T18:25:47",
            "upload_time_iso_8601": "2024-11-12T18:25:47.448646Z",
            "url": "https://files.pythonhosted.org/packages/ff/97/8a42e9c17c305516c0d956a2887d616d3a1b0531b0053ac95a917e4a1ab7/pydantic_core-2.27.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b09ff3ce866f769ebbae2abdcd742247dc2bd6967d646daf54a562ceee6abdb",
                "md5": "26ade2060c0030f36d2b0584b0ea799e",
                "sha256": "e015833384ca3e1a0565a79f5d953b0629d9138021c27ad37c92a9fa1af7623c"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "26ade2060c0030f36d2b0584b0ea799e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1807944,
            "upload_time": "2024-11-12T18:25:49",
            "upload_time_iso_8601": "2024-11-12T18:25:49.818946Z",
            "url": "https://files.pythonhosted.org/packages/5b/09/ff3ce866f769ebbae2abdcd742247dc2bd6967d646daf54a562ceee6abdb/pydantic_core-2.27.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88d7e04d06ca71a0bd7f4cac24e6aa562129969c91117e5fad2520ede865c8cb",
                "md5": "6d51f9c6724d88f14de40c7f1376034b",
                "sha256": "db72e40628967f6dc572020d04b5f800d71264e0531c6da35097e73bdf38b003"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d51f9c6724d88f14de40c7f1376034b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1829151,
            "upload_time": "2024-11-12T18:25:51",
            "upload_time_iso_8601": "2024-11-12T18:25:51.624118Z",
            "url": "https://files.pythonhosted.org/packages/88/d7/e04d06ca71a0bd7f4cac24e6aa562129969c91117e5fad2520ede865c8cb/pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "142490b0babb61b68ecc471ce5becad8f7fc5f7835c601774e5de577b051b7ad",
                "md5": "252c524c0119dcf73bc2805061087d30",
                "sha256": "df45c4073bed486ea2f18757057953afed8dd77add7276ff01bccb79982cf46c"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "252c524c0119dcf73bc2805061087d30",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1849502,
            "upload_time": "2024-11-12T18:25:53",
            "upload_time_iso_8601": "2024-11-12T18:25:53.208097Z",
            "url": "https://files.pythonhosted.org/packages/14/24/90b0babb61b68ecc471ce5becad8f7fc5f7835c601774e5de577b051b7ad/pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc3462612e655b4d693a6ec515fd0ddab4bfc0cc6759076e09c23fc6966bd07b",
                "md5": "3317db06c528e02cf29d953a49543ca0",
                "sha256": "836a4bfe0cc6d36dc9a9cc1a7b391265bf6ce9d1eb1eac62ac5139f5d8d9a6fa"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3317db06c528e02cf29d953a49543ca0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2035489,
            "upload_time": "2024-11-12T18:25:54",
            "upload_time_iso_8601": "2024-11-12T18:25:54.928554Z",
            "url": "https://files.pythonhosted.org/packages/fc/34/62612e655b4d693a6ec515fd0ddab4bfc0cc6759076e09c23fc6966bd07b/pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "127d0ff62235adda41b87c495c1b95c84d4debfecb91cfd62e3100abad9754fa",
                "md5": "285e48dfaf76aff1604845d6ddc3cb24",
                "sha256": "4bf1340ae507f6da6360b24179c2083857c8ca7644aab65807023cf35404ea8d"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "285e48dfaf76aff1604845d6ddc3cb24",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2774949,
            "upload_time": "2024-11-12T18:25:57",
            "upload_time_iso_8601": "2024-11-12T18:25:57.024525Z",
            "url": "https://files.pythonhosted.org/packages/12/7d/0ff62235adda41b87c495c1b95c84d4debfecb91cfd62e3100abad9754fa/pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7face1867e2b808a668f32ad9012eaeac0b0ee377eee8157ab93720f48ee609b",
                "md5": "52aa2c38b6080c0a77b298d866e17381",
                "sha256": "5ab325fc86fbc077284c8d7f996d904d30e97904a87d6fb303dce6b3de7ebba9"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52aa2c38b6080c0a77b298d866e17381",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2130123,
            "upload_time": "2024-11-12T18:25:59",
            "upload_time_iso_8601": "2024-11-12T18:25:59.179406Z",
            "url": "https://files.pythonhosted.org/packages/7f/ac/e1867e2b808a668f32ad9012eaeac0b0ee377eee8157ab93720f48ee609b/pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f045006f2dbf655052826ac8d03d51b9a122de709fed76eb1040aa21772f530",
                "md5": "b17d38f8b2bd66a7f2d2808936997111",
                "sha256": "1da0c98a85a6c6ed702d5556db3b09c91f9b0b78de37b7593e2de8d03238807a"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b17d38f8b2bd66a7f2d2808936997111",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1981988,
            "upload_time": "2024-11-12T18:26:01",
            "upload_time_iso_8601": "2024-11-12T18:26:01.459095Z",
            "url": "https://files.pythonhosted.org/packages/2f/04/5006f2dbf655052826ac8d03d51b9a122de709fed76eb1040aa21772f530/pydantic_core-2.27.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "808bbdbe875c4758282402e3cc75fa6bf2f0c8ffac1874f384190034786d3cbc",
                "md5": "fefdaf7f1844cef34173438f75d8d45e",
                "sha256": "7b0202ebf2268954090209a84f9897345719e46a57c5f2c9b7b250ca0a9d3e63"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fefdaf7f1844cef34173438f75d8d45e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1992043,
            "upload_time": "2024-11-12T18:26:03",
            "upload_time_iso_8601": "2024-11-12T18:26:03.797146Z",
            "url": "https://files.pythonhosted.org/packages/80/8b/bdbe875c4758282402e3cc75fa6bf2f0c8ffac1874f384190034786d3cbc/pydantic_core-2.27.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f2d4e46981cfcf4ca4c2ff7734dec08162e398dc598c6c0687454b05a82dc2f",
                "md5": "3572016f80bfdcd5a0448755e9e7411e",
                "sha256": "35380671c3c921fe8adf31ad349dc6f7588b7e928dbe44e1093789734f607399"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-cp310-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3572016f80bfdcd5a0448755e9e7411e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2087309,
            "upload_time": "2024-11-12T18:26:05",
            "upload_time_iso_8601": "2024-11-12T18:26:05.433819Z",
            "url": "https://files.pythonhosted.org/packages/2f/2d/4e46981cfcf4ca4c2ff7734dec08162e398dc598c6c0687454b05a82dc2f/pydantic_core-2.27.0-cp310-cp310-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d24356ef2e72360d909629a54198d2bc7ef60f19fde8ceb5c90d7749120d0b61",
                "md5": "f0197e6f154f9fd3f7ad3b31df575029",
                "sha256": "6b4c19525c3538fbc0bbda6229f9682fb8199ce9ac37395880e6952798e00373"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0197e6f154f9fd3f7ad3b31df575029",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2140517,
            "upload_time": "2024-11-12T18:26:07",
            "upload_time_iso_8601": "2024-11-12T18:26:07.077934Z",
            "url": "https://files.pythonhosted.org/packages/d2/43/56ef2e72360d909629a54198d2bc7ef60f19fde8ceb5c90d7749120d0b61/pydantic_core-2.27.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "614081e5d8f84ab070cf091d072bb61b6021ff79d7110b2d0145fe3171b6107b",
                "md5": "46a83861d08c9b22a8cba765d5bc0040",
                "sha256": "333c840a1303d1474f491e7be0b718226c730a39ead0f7dab2c7e6a2f3855555"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "46a83861d08c9b22a8cba765d5bc0040",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1814120,
            "upload_time": "2024-11-12T18:26:09",
            "upload_time_iso_8601": "2024-11-12T18:26:09.416856Z",
            "url": "https://files.pythonhosted.org/packages/61/40/81e5d8f84ab070cf091d072bb61b6021ff79d7110b2d0145fe3171b6107b/pydantic_core-2.27.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0564e543d342b991d38426bcb841bc0b4b95b9bd2191367ba0cc75f258e3d583",
                "md5": "c65f4f8791fd9c3fa07338b12e818a29",
                "sha256": "99b2863c1365f43f74199c980a3d40f18a218fbe683dd64e470199db426c4d6a"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c65f4f8791fd9c3fa07338b12e818a29",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1972268,
            "upload_time": "2024-11-12T18:26:11",
            "upload_time_iso_8601": "2024-11-12T18:26:11.042223Z",
            "url": "https://files.pythonhosted.org/packages/05/64/e543d342b991d38426bcb841bc0b4b95b9bd2191367ba0cc75f258e3d583/pydantic_core-2.27.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85ba5ed9583a44d9fbd6fbc028df8e3eae574a3ef4761d7f56bb4e0eb428d5ce",
                "md5": "81bc3d5ef67c86e98db8b8df246891fa",
                "sha256": "4523c4009c3f39d948e01962223c9f5538602e7087a628479b723c939fab262d"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "81bc3d5ef67c86e98db8b8df246891fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1891468,
            "upload_time": "2024-11-12T18:26:13",
            "upload_time_iso_8601": "2024-11-12T18:26:13.547149Z",
            "url": "https://files.pythonhosted.org/packages/85/ba/5ed9583a44d9fbd6fbc028df8e3eae574a3ef4761d7f56bb4e0eb428d5ce/pydantic_core-2.27.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "501e58baa0fde14aafccfcc09a8b45bdc11eb941b58a69536729d832e383bdbd",
                "md5": "7a755f7a2ff16ec0e5291e6d23a86a95",
                "sha256": "84af1cf7bfdcbc6fcf5a5f70cc9896205e0350306e4dd73d54b6a18894f79386"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7a755f7a2ff16ec0e5291e6d23a86a95",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1807103,
            "upload_time": "2024-11-12T18:26:16",
            "upload_time_iso_8601": "2024-11-12T18:26:16.000637Z",
            "url": "https://files.pythonhosted.org/packages/50/1e/58baa0fde14aafccfcc09a8b45bdc11eb941b58a69536729d832e383bdbd/pydantic_core-2.27.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d870422a653ddfcf68763eb56d6e4e2ad19df6d5e006f3f4b854fda06ce2ba3",
                "md5": "f09a191b880476377e9e6423ad176a21",
                "sha256": "e65466b31be1070b4a5b7dbfbd14b247884cb8e8b79c64fb0f36b472912dbaea"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f09a191b880476377e9e6423ad176a21",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1827446,
            "upload_time": "2024-11-12T18:26:17",
            "upload_time_iso_8601": "2024-11-12T18:26:17.683800Z",
            "url": "https://files.pythonhosted.org/packages/7d/87/0422a653ddfcf68763eb56d6e4e2ad19df6d5e006f3f4b854fda06ce2ba3/pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4488e431b7732695c93ded79214299a83ac04249d748243b8ba6644ab076574",
                "md5": "a1a8f74535e787d5692cdf18bbeb3ebb",
                "sha256": "a5c022bb0d453192426221605efc865373dde43b17822a264671c53b068ac20c"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a1a8f74535e787d5692cdf18bbeb3ebb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1847798,
            "upload_time": "2024-11-12T18:26:19",
            "upload_time_iso_8601": "2024-11-12T18:26:19.417648Z",
            "url": "https://files.pythonhosted.org/packages/a4/48/8e431b7732695c93ded79214299a83ac04249d748243b8ba6644ab076574/pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "987de1f28e12a26035d7c8b7678830400e5b94129c9ccb74636235a2eeeee40f",
                "md5": "6f3073175583c3e9713017dfaaddf2cb",
                "sha256": "6bb69bf3b6500f195c3deb69c1205ba8fc3cb21d1915f1f158a10d6b1ef29b6a"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6f3073175583c3e9713017dfaaddf2cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2033797,
            "upload_time": "2024-11-12T18:26:22",
            "upload_time_iso_8601": "2024-11-12T18:26:22.100095Z",
            "url": "https://files.pythonhosted.org/packages/98/7d/e1f28e12a26035d7c8b7678830400e5b94129c9ccb74636235a2eeeee40f/pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89b4ad5bc2b43b7ca8fd5f5068eca7f195565f53911d9ae69925f7f21859a929",
                "md5": "4a9985739e716292aa71c8ef5aa9f791",
                "sha256": "0aa4d1b2eba9a325897308b3124014a142cdccb9f3e016f31d3ebee6b5ea5e75"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4a9985739e716292aa71c8ef5aa9f791",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2767592,
            "upload_time": "2024-11-12T18:26:24",
            "upload_time_iso_8601": "2024-11-12T18:26:24.566548Z",
            "url": "https://files.pythonhosted.org/packages/89/b4/ad5bc2b43b7ca8fd5f5068eca7f195565f53911d9ae69925f7f21859a929/pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ea67fb0725eaf1122518c018bfe38aaf4ad3d512e8598e2c08419b9a270f4bf",
                "md5": "2f3baf91a4b724766392fe108a34d480",
                "sha256": "8e96ca781e0c01e32115912ebdf7b3fb0780ce748b80d7d28a0802fa9fbaf44e"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f3baf91a4b724766392fe108a34d480",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2130244,
            "upload_time": "2024-11-12T18:26:27",
            "upload_time_iso_8601": "2024-11-12T18:26:27.070381Z",
            "url": "https://files.pythonhosted.org/packages/3e/a6/7fb0725eaf1122518c018bfe38aaf4ad3d512e8598e2c08419b9a270f4bf/pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a12c453e52a866947a153bb575bbbb6b14db344f07a73b2ad820ff8f40e9807b",
                "md5": "89a8422fc68fe1c384b49d14c92bfcfa",
                "sha256": "b872c86d8d71827235c7077461c502feb2db3f87d9d6d5a9daa64287d75e4fa0"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "89a8422fc68fe1c384b49d14c92bfcfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1979626,
            "upload_time": "2024-11-12T18:26:28",
            "upload_time_iso_8601": "2024-11-12T18:26:28.814129Z",
            "url": "https://files.pythonhosted.org/packages/a1/2c/453e52a866947a153bb575bbbb6b14db344f07a73b2ad820ff8f40e9807b/pydantic_core-2.27.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a431faa8601085dab2a37dfaca8d48605b76e38aeefcde58bf95534ab96b135",
                "md5": "0d3797eb5bda400a4975b3ac122f0c14",
                "sha256": "82e1ad4ca170e8af4c928b67cff731b6296e6a0a0981b97b2eb7c275cc4e15bd"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0d3797eb5bda400a4975b3ac122f0c14",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1990741,
            "upload_time": "2024-11-12T18:26:30",
            "upload_time_iso_8601": "2024-11-12T18:26:30.601587Z",
            "url": "https://files.pythonhosted.org/packages/7a/43/1faa8601085dab2a37dfaca8d48605b76e38aeefcde58bf95534ab96b135/pydantic_core-2.27.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddef21f25f5964979b7e6f9102074083b5448c22c871da438d91db09601e6634",
                "md5": "466055d8399ffcdc0ccea2375bdae08b",
                "sha256": "eb40f828bc2f73f777d1eb8fee2e86cd9692a4518b63b6b5aa8af915dfd3207b"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-cp311-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "466055d8399ffcdc0ccea2375bdae08b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2086325,
            "upload_time": "2024-11-12T18:26:33",
            "upload_time_iso_8601": "2024-11-12T18:26:33.056589Z",
            "url": "https://files.pythonhosted.org/packages/dd/ef/21f25f5964979b7e6f9102074083b5448c22c871da438d91db09601e6634/pydantic_core-2.27.0-cp311-cp311-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8af981e5f910571a20655dd7bf10e6d6db8c279e250bfbdb5ab1a09ce3e0eb82",
                "md5": "76645ab7ca0988ad92d296abe90c6eab",
                "sha256": "9a8fbf506fde1529a1e3698198fe64bfbe2e0c09557bc6a7dcf872e7c01fec40"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76645ab7ca0988ad92d296abe90c6eab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2138839,
            "upload_time": "2024-11-12T18:26:34",
            "upload_time_iso_8601": "2024-11-12T18:26:34.827092Z",
            "url": "https://files.pythonhosted.org/packages/8a/f9/81e5f910571a20655dd7bf10e6d6db8c279e250bfbdb5ab1a09ce3e0eb82/pydantic_core-2.27.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59c427917b73d0631098b91f2ec303e1becb823fead0628ee9055fca78ec1e2e",
                "md5": "0b0eb904da5ee215c79beaea932a6ceb",
                "sha256": "24f984fc7762ed5f806d9e8c4c77ea69fdb2afd987b4fd319ef06c87595a8c55"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "0b0eb904da5ee215c79beaea932a6ceb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1809514,
            "upload_time": "2024-11-12T18:26:36",
            "upload_time_iso_8601": "2024-11-12T18:26:36.440775Z",
            "url": "https://files.pythonhosted.org/packages/59/c4/27917b73d0631098b91f2ec303e1becb823fead0628ee9055fca78ec1e2e/pydantic_core-2.27.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea48a30c67d62b8f39095edc3dab6abe69225e8c57186f31cc59a1ab984ea8e6",
                "md5": "3083cc8f751ea09e77d50d8be2b1a61c",
                "sha256": "68950bc08f9735306322bfc16a18391fcaac99ded2509e1cc41d03ccb6013cfe"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3083cc8f751ea09e77d50d8be2b1a61c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1971838,
            "upload_time": "2024-11-12T18:26:38",
            "upload_time_iso_8601": "2024-11-12T18:26:38.171071Z",
            "url": "https://files.pythonhosted.org/packages/ea/48/a30c67d62b8f39095edc3dab6abe69225e8c57186f31cc59a1ab984ea8e6/pydantic_core-2.27.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e9e3798b901cf331058bae0ba4712a52fb0106c39f913830aaf71f01fd10d45",
                "md5": "57089094423a63fa0bfe4eef73b026e6",
                "sha256": "3eb8849445c26b41c5a474061032c53e14fe92a11a5db969f722a2716cd12206"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp311-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "57089094423a63fa0bfe4eef73b026e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1862174,
            "upload_time": "2024-11-12T18:26:39",
            "upload_time_iso_8601": "2024-11-12T18:26:39.874985Z",
            "url": "https://files.pythonhosted.org/packages/4e/9e/3798b901cf331058bae0ba4712a52fb0106c39f913830aaf71f01fd10d45/pydantic_core-2.27.0-cp311-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "829943149b127559f3152cd28cb7146592c6547cfe47d528761954e2e8fcabaf",
                "md5": "3f6358f1c2ba62749d7f81a86a6f0f2b",
                "sha256": "8117839a9bdbba86e7f9df57018fe3b96cec934c3940b591b0fd3fbfb485864a"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f6358f1c2ba62749d7f81a86a6f0f2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1887064,
            "upload_time": "2024-11-12T18:26:42",
            "upload_time_iso_8601": "2024-11-12T18:26:42.450193Z",
            "url": "https://files.pythonhosted.org/packages/82/99/43149b127559f3152cd28cb7146592c6547cfe47d528761954e2e8fcabaf/pydantic_core-2.27.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7edd989570c76334aa55ccb4ee8b5e0e6881a513620c6172d93b2f3b77e10f81",
                "md5": "540065a9db39853bab67fb4266757e32",
                "sha256": "a291d0b4243a259c8ea7e2b84eb9ccb76370e569298875a7c5e3e71baf49057a"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "540065a9db39853bab67fb4266757e32",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1804405,
            "upload_time": "2024-11-12T18:26:45",
            "upload_time_iso_8601": "2024-11-12T18:26:45.079217Z",
            "url": "https://files.pythonhosted.org/packages/7e/dd/989570c76334aa55ccb4ee8b5e0e6881a513620c6172d93b2f3b77e10f81/pydantic_core-2.27.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3eb5bce1d6d6fb71d916c74bf988b7d0cd7fc0c23da5e08bc0d6d6e08c12bf36",
                "md5": "445061430f29cbfa82d2911df4fd25d7",
                "sha256": "84e35afd9e10b2698e6f2f32256678cb23ca6c1568d02628033a837638b3ed12"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "445061430f29cbfa82d2911df4fd25d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1822595,
            "upload_time": "2024-11-12T18:26:46",
            "upload_time_iso_8601": "2024-11-12T18:26:46.807218Z",
            "url": "https://files.pythonhosted.org/packages/3e/b5/bce1d6d6fb71d916c74bf988b7d0cd7fc0c23da5e08bc0d6d6e08c12bf36/pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3593a6e5e04625ac8fcbed523d7b741e91cc3a37ed1e04e16f8f2f34269bbe53",
                "md5": "a58d245bad7d2a5d8c5fcb66e447f881",
                "sha256": "58ab0d979c969983cdb97374698d847a4acffb217d543e172838864636ef10d9"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a58d245bad7d2a5d8c5fcb66e447f881",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1848701,
            "upload_time": "2024-11-12T18:26:48",
            "upload_time_iso_8601": "2024-11-12T18:26:48.549282Z",
            "url": "https://files.pythonhosted.org/packages/35/93/a6e5e04625ac8fcbed523d7b741e91cc3a37ed1e04e16f8f2f34269bbe53/pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a7456ead1436e3f6513b59b3a442272578a6ec09a39ab95abd5ee321bcc8c95",
                "md5": "f4fbf1887a441993bd99306e409ef33d",
                "sha256": "0d06b667e53320332be2bf6f9461f4a9b78092a079b8ce8634c9afaa7e10cd9f"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f4fbf1887a441993bd99306e409ef33d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2031878,
            "upload_time": "2024-11-12T18:26:50",
            "upload_time_iso_8601": "2024-11-12T18:26:50.803767Z",
            "url": "https://files.pythonhosted.org/packages/3a/74/56ead1436e3f6513b59b3a442272578a6ec09a39ab95abd5ee321bcc8c95/pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e14d8905b2710ef653c0da27224bfb6a084b5873ad6fdb975dda837943e5639d",
                "md5": "8ac4c3076303ae37480267ace5b91cf4",
                "sha256": "78f841523729e43e3928a364ec46e2e3f80e6625a4f62aca5c345f3f626c6e8a"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8ac4c3076303ae37480267ace5b91cf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2673386,
            "upload_time": "2024-11-12T18:26:52",
            "upload_time_iso_8601": "2024-11-12T18:26:52.715887Z",
            "url": "https://files.pythonhosted.org/packages/e1/4d/8905b2710ef653c0da27224bfb6a084b5873ad6fdb975dda837943e5639d/pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1df0abe1511f11756d12ce18d016f3555cb47211590e4849ee02e7adfdd1684e",
                "md5": "c6d50341a13deec143aa60754da6294a",
                "sha256": "400bf470e4327e920883b51e255617dfe4496d4e80c3fea0b5a5d0bf2c404dd4"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6d50341a13deec143aa60754da6294a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2152867,
            "upload_time": "2024-11-12T18:26:54",
            "upload_time_iso_8601": "2024-11-12T18:26:54.604888Z",
            "url": "https://files.pythonhosted.org/packages/1d/f0/abe1511f11756d12ce18d016f3555cb47211590e4849ee02e7adfdd1684e/pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7901c588d4d93ce53e1f5ab0cea2d76151fcd36613446bf99b670d7da9ddf89",
                "md5": "e7826675e2d7a57eca354f117344d7ca",
                "sha256": "951e71da6c89d354572098bada5ba5b5dc3a9390c933af8a614e37755d3d1840"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e7826675e2d7a57eca354f117344d7ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1986595,
            "upload_time": "2024-11-12T18:26:57",
            "upload_time_iso_8601": "2024-11-12T18:26:57.177644Z",
            "url": "https://files.pythonhosted.org/packages/c7/90/1c588d4d93ce53e1f5ab0cea2d76151fcd36613446bf99b670d7da9ddf89/pydantic_core-2.27.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a39c27d06369f39375966836cde5c8aec0a66dc2f532c13d9aa1a6c370131fbd",
                "md5": "39906d90aed9c3f0110c1e4bf6d6f9d1",
                "sha256": "2a51ce96224eadd1845150b204389623c8e129fde5a67a84b972bd83a85c6c40"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "39906d90aed9c3f0110c1e4bf6d6f9d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1995731,
            "upload_time": "2024-11-12T18:26:59",
            "upload_time_iso_8601": "2024-11-12T18:26:59.101513Z",
            "url": "https://files.pythonhosted.org/packages/a3/9c/27d06369f39375966836cde5c8aec0a66dc2f532c13d9aa1a6c370131fbd/pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "264eb039e52b7f4c51d9fae6715d5d2e47a57c369b8e0cb75838974a193aae40",
                "md5": "55ee84e2c4cbe1caa150871ba5eb9e4a",
                "sha256": "483c2213a609e7db2c592bbc015da58b6c75af7360ca3c981f178110d9787bcf"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "55ee84e2c4cbe1caa150871ba5eb9e4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2085771,
            "upload_time": "2024-11-12T18:27:00",
            "upload_time_iso_8601": "2024-11-12T18:27:00.917260Z",
            "url": "https://files.pythonhosted.org/packages/26/4e/b039e52b7f4c51d9fae6715d5d2e47a57c369b8e0cb75838974a193aae40/pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01932796bd116a93e7e4e10baca4c55266c4d214b3b4e5ee7f0e9add69c184af",
                "md5": "6d63849cf90e48c6381af66e14bd29ea",
                "sha256": "359e7951f04ad35111b5ddce184db3391442345d0ab073aa63a95eb8af25a5ef"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d63849cf90e48c6381af66e14bd29ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2150452,
            "upload_time": "2024-11-12T18:27:03",
            "upload_time_iso_8601": "2024-11-12T18:27:03.651315Z",
            "url": "https://files.pythonhosted.org/packages/01/93/2796bd116a93e7e4e10baca4c55266c4d214b3b4e5ee7f0e9add69c184af/pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f93e57562d6ea961557174c3afa481a73ce0e2d8b823e0eb2b320bfb00debbe",
                "md5": "99991b5e732eb9ad08684bcb99e21d45",
                "sha256": "ee7d9d5537daf6d5c74a83b38a638cc001b648096c1cae8ef695b0c919d9d379"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "99991b5e732eb9ad08684bcb99e21d45",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1830767,
            "upload_time": "2024-11-12T18:27:05",
            "upload_time_iso_8601": "2024-11-12T18:27:05.620936Z",
            "url": "https://files.pythonhosted.org/packages/0f/93/e57562d6ea961557174c3afa481a73ce0e2d8b823e0eb2b320bfb00debbe/pydantic_core-2.27.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44004f121ca5dd06420813e7858395b5832603ed0074a5b74ef3104c8dbc2fd5",
                "md5": "ccaced3068acb59d94bb5e5d1491316a",
                "sha256": "2be0ad541bb9f059954ccf8877a49ed73877f862529575ff3d54bf4223e4dd61"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ccaced3068acb59d94bb5e5d1491316a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1973909,
            "upload_time": "2024-11-12T18:27:07",
            "upload_time_iso_8601": "2024-11-12T18:27:07.537229Z",
            "url": "https://files.pythonhosted.org/packages/44/00/4f121ca5dd06420813e7858395b5832603ed0074a5b74ef3104c8dbc2fd5/pydantic_core-2.27.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3c736f87c0dabbde9c0dd59b9024e4bf117a5122515c864ddbe685ed8301670",
                "md5": "296da64d874ecfba097175a5c7df7653",
                "sha256": "6e19401742ed7b69e51d8e4df3c03ad5ec65a83b36244479fd70edde2828a5d9"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp312-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "296da64d874ecfba097175a5c7df7653",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1877037,
            "upload_time": "2024-11-12T18:27:09",
            "upload_time_iso_8601": "2024-11-12T18:27:09.962991Z",
            "url": "https://files.pythonhosted.org/packages/c3/c7/36f87c0dabbde9c0dd59b9024e4bf117a5122515c864ddbe685ed8301670/pydantic_core-2.27.0-cp312-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9db2740159bdfe532d856e340510246aa1fd723b97cadf1a38153bdfb52efa28",
                "md5": "9b0a9bc6cab45b4efe868a5f9bda8559",
                "sha256": "5f2b19b8d6fca432cb3acf48cf5243a7bf512988029b6e6fd27e9e8c0a204d85"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b0a9bc6cab45b4efe868a5f9bda8559",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1886935,
            "upload_time": "2024-11-12T18:27:11",
            "upload_time_iso_8601": "2024-11-12T18:27:11.898654Z",
            "url": "https://files.pythonhosted.org/packages/9d/b2/740159bdfe532d856e340510246aa1fd723b97cadf1a38153bdfb52efa28/pydantic_core-2.27.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca2a2f435d9fd591c912ca227f29c652a93775d35d54677b57c3157bbad823b5",
                "md5": "e6bbb5b48cc30ba73c7d1b3f752e3e46",
                "sha256": "c86679f443e7085ea55a7376462553996c688395d18ef3f0d3dbad7838f857a2"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e6bbb5b48cc30ba73c7d1b3f752e3e46",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1805318,
            "upload_time": "2024-11-12T18:27:13",
            "upload_time_iso_8601": "2024-11-12T18:27:13.778114Z",
            "url": "https://files.pythonhosted.org/packages/ca/2a/2f435d9fd591c912ca227f29c652a93775d35d54677b57c3157bbad823b5/pydantic_core-2.27.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "baf2755b628009530b19464bb95c60f829b47a6ef7930f8ca1d87dac90fd2848",
                "md5": "b408c1ac61a0a66e98519422bde07b37",
                "sha256": "510b11e9c3b1a852876d1ccd8d5903684336d635214148637ceb27366c75a467"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b408c1ac61a0a66e98519422bde07b37",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1822284,
            "upload_time": "2024-11-12T18:27:15",
            "upload_time_iso_8601": "2024-11-12T18:27:15.680273Z",
            "url": "https://files.pythonhosted.org/packages/ba/f2/755b628009530b19464bb95c60f829b47a6ef7930f8ca1d87dac90fd2848/pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3dc2a12744628b1b55c5384bd77657afa0780868484a92c37a189fb460d1cfe7",
                "md5": "80bb9649aa2bc8233e07f4edf310e1f3",
                "sha256": "eb704155e73b833801c247f39d562229c0303f54770ca14fb1c053acb376cf10"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "80bb9649aa2bc8233e07f4edf310e1f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1848522,
            "upload_time": "2024-11-12T18:27:18",
            "upload_time_iso_8601": "2024-11-12T18:27:18.491725Z",
            "url": "https://files.pythonhosted.org/packages/3d/c2/a12744628b1b55c5384bd77657afa0780868484a92c37a189fb460d1cfe7/pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "601ddfcb8ab94a4637d4cf682550a2bf94695863988e7bcbd6f4d83c04178e17",
                "md5": "305d11796b5c7066a61aa40f820c5d1a",
                "sha256": "9ce048deb1e033e7a865ca384770bccc11d44179cf09e5193a535c4c2f497bdc"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "305d11796b5c7066a61aa40f820c5d1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2031678,
            "upload_time": "2024-11-12T18:27:20",
            "upload_time_iso_8601": "2024-11-12T18:27:20.429370Z",
            "url": "https://files.pythonhosted.org/packages/60/1d/dfcb8ab94a4637d4cf682550a2bf94695863988e7bcbd6f4d83c04178e17/pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eec8f9cbcab0275e031c4312223c75d999b61fba60995003cd89dc4866300059",
                "md5": "aeb83fdff3547de1b63d1aa036806217",
                "sha256": "58560828ee0951bb125c6f2862fbc37f039996d19ceb6d8ff1905abf7da0bf3d"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "aeb83fdff3547de1b63d1aa036806217",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2672948,
            "upload_time": "2024-11-12T18:27:22",
            "upload_time_iso_8601": "2024-11-12T18:27:22.322344Z",
            "url": "https://files.pythonhosted.org/packages/ee/c8/f9cbcab0275e031c4312223c75d999b61fba60995003cd89dc4866300059/pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41f9c613546237cf58ed7a7fa9158410c14d0e7e0cbbf95f83a905c9424bb074",
                "md5": "5d879757c436ca6ca5d671ffbef42adc",
                "sha256": "abb4785894936d7682635726613c44578c420a096729f1978cd061a7e72d5275"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d879757c436ca6ca5d671ffbef42adc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2152419,
            "upload_time": "2024-11-12T18:27:25",
            "upload_time_iso_8601": "2024-11-12T18:27:25.201773Z",
            "url": "https://files.pythonhosted.org/packages/41/f9/c613546237cf58ed7a7fa9158410c14d0e7e0cbbf95f83a905c9424bb074/pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4971b951b03a271678b1d1b79481dac38cf8bce8a4e178f36ada0e9aff65a679",
                "md5": "e8cf3c05a00848709f56c4622e02e1b4",
                "sha256": "2883b260f7a93235488699d39cbbd94fa7b175d3a8063fbfddd3e81ad9988cb2"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e8cf3c05a00848709f56c4622e02e1b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1986408,
            "upload_time": "2024-11-12T18:27:27",
            "upload_time_iso_8601": "2024-11-12T18:27:27.130043Z",
            "url": "https://files.pythonhosted.org/packages/49/71/b951b03a271678b1d1b79481dac38cf8bce8a4e178f36ada0e9aff65a679/pydantic_core-2.27.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a2c07b0d5b5e1cdaa07b7c23e758354377d294ff0395116d39c9fa734e5d89e",
                "md5": "107485196b078a76e8eabf058fce093d",
                "sha256": "c6fcb3fa3855d583aa57b94cf146f7781d5d5bc06cb95cb3afece33d31aac39b"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "107485196b078a76e8eabf058fce093d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1995895,
            "upload_time": "2024-11-12T18:27:29",
            "upload_time_iso_8601": "2024-11-12T18:27:29.859479Z",
            "url": "https://files.pythonhosted.org/packages/9a/2c/07b0d5b5e1cdaa07b7c23e758354377d294ff0395116d39c9fa734e5d89e/pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6309c21e0d7438c7e742209cc8603607c8d389df96018396c8a2577f6e24c5c5",
                "md5": "c4ae9cf78a25b239bc4d3171175a1a8c",
                "sha256": "e851a051f7260e6d688267eb039c81f05f23a19431bd7dfa4bf5e3cb34c108cd"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c4ae9cf78a25b239bc4d3171175a1a8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2085914,
            "upload_time": "2024-11-12T18:27:32",
            "upload_time_iso_8601": "2024-11-12T18:27:32.604582Z",
            "url": "https://files.pythonhosted.org/packages/63/09/c21e0d7438c7e742209cc8603607c8d389df96018396c8a2577f6e24c5c5/pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68e45ed8f09d92655dcd0a86ee547e509adb3e396cef0a48f5c31e3b060bb9d0",
                "md5": "65ff9132ff21007c095f202e76fd504b",
                "sha256": "edb1bfd45227dec8d50bc7c7d86463cd8728bcc574f9b07de7369880de4626a3"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65ff9132ff21007c095f202e76fd504b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2150217,
            "upload_time": "2024-11-12T18:27:34",
            "upload_time_iso_8601": "2024-11-12T18:27:34.854838Z",
            "url": "https://files.pythonhosted.org/packages/68/e4/5ed8f09d92655dcd0a86ee547e509adb3e396cef0a48f5c31e3b060bb9d0/pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cde6a202f0e1b81c729130404e82d9de90dc4418ec01df35000d48d027c38501",
                "md5": "54c4b791c7b8609c5db0540f72580ddb",
                "sha256": "678f66462058dd978702db17eb6a3633d634f7aa0deaea61e0a674152766d3fc"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-none-win32.whl",
            "has_sig": false,
            "md5_digest": "54c4b791c7b8609c5db0540f72580ddb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1830973,
            "upload_time": "2024-11-12T18:27:37",
            "upload_time_iso_8601": "2024-11-12T18:27:37.423093Z",
            "url": "https://files.pythonhosted.org/packages/cd/e6/a202f0e1b81c729130404e82d9de90dc4418ec01df35000d48d027c38501/pydantic_core-2.27.0-cp313-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "063d21ed0f308e6618ce6c5c6bfb9e71734a9a3256d5474a53c8e5aaaba498ca",
                "md5": "c8f12d431e2bcafd5deaf9e999c3a491",
                "sha256": "d28ca7066d6cdd347a50d8b725dc10d9a1d6a1cce09836cf071ea6a2d4908be0"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c8f12d431e2bcafd5deaf9e999c3a491",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1974853,
            "upload_time": "2024-11-12T18:27:39",
            "upload_time_iso_8601": "2024-11-12T18:27:39.515659Z",
            "url": "https://files.pythonhosted.org/packages/06/3d/21ed0f308e6618ce6c5c6bfb9e71734a9a3256d5474a53c8e5aaaba498ca/pydantic_core-2.27.0-cp313-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d718e5744a132b81f98b9f92e15f33f03229a1d254ce7af942b1422ec2ac656f",
                "md5": "1730fe0e7f0dfb3644ffb32cfe7ee3d6",
                "sha256": "6f4a53af9e81d757756508b57cae1cf28293f0f31b9fa2bfcb416cc7fb230f9d"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp313-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "1730fe0e7f0dfb3644ffb32cfe7ee3d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1877469,
            "upload_time": "2024-11-12T18:27:42",
            "upload_time_iso_8601": "2024-11-12T18:27:42.400321Z",
            "url": "https://files.pythonhosted.org/packages/d7/18/e5744a132b81f98b9f92e15f33f03229a1d254ce7af942b1422ec2ac656f/pydantic_core-2.27.0-cp313-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1799ff7da9e775aa9bf42c9df93fc940d421216b22d255a6edbc11aa291d3f0",
                "md5": "cb2d1f3e37a83f067d809cea0098edce",
                "sha256": "e9f9feee7f334b72ceae46313333d002b56f325b5f04271b4ae2aadd9e993ae4"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb2d1f3e37a83f067d809cea0098edce",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1897587,
            "upload_time": "2024-11-12T18:27:44",
            "upload_time_iso_8601": "2024-11-12T18:27:44.703656Z",
            "url": "https://files.pythonhosted.org/packages/e1/79/9ff7da9e775aa9bf42c9df93fc940d421216b22d255a6edbc11aa291d3f0/pydantic_core-2.27.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d62fecc64300ea766b6b45de87663ff2adba63c6624a71ba8bc5a323e17ef5e",
                "md5": "a42996c83ab3b07423dcad0847bfe9f0",
                "sha256": "225bfff5d425c34e1fd562cef52d673579d59b967d9de06178850c4802af9039"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a42996c83ab3b07423dcad0847bfe9f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1777716,
            "upload_time": "2024-11-12T18:27:47",
            "upload_time_iso_8601": "2024-11-12T18:27:47.794469Z",
            "url": "https://files.pythonhosted.org/packages/5d/62/fecc64300ea766b6b45de87663ff2adba63c6624a71ba8bc5a323e17ef5e/pydantic_core-2.27.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "899685e7daa1151104c24f4b007d32374c899c5e66ebbbf4da4debd1794e084f",
                "md5": "9b9009bf13ff259ef36db5f543add0fb",
                "sha256": "c921ad596ff1a82f9c692b0758c944355abc9f0de97a4c13ca60ffc6d8dc15d4"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9b9009bf13ff259ef36db5f543add0fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1831004,
            "upload_time": "2024-11-12T18:27:51",
            "upload_time_iso_8601": "2024-11-12T18:27:51.530125Z",
            "url": "https://files.pythonhosted.org/packages/89/96/85e7daa1151104c24f4b007d32374c899c5e66ebbbf4da4debd1794e084f/pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8031a9c66908c95dd2a04d84baa98b46d8ea35abb13354d0a27ac47ffab6decf",
                "md5": "4050fc207a5f0ed2fa98dcf371f31ea6",
                "sha256": "6354e18a9be37bfa124d6b288a87fb30c673745806c92956f1a25e3ae6e76b96"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4050fc207a5f0ed2fa98dcf371f31ea6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1850721,
            "upload_time": "2024-11-12T18:27:54",
            "upload_time_iso_8601": "2024-11-12T18:27:54.982151Z",
            "url": "https://files.pythonhosted.org/packages/80/31/a9c66908c95dd2a04d84baa98b46d8ea35abb13354d0a27ac47ffab6decf/pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48a47bc31d7bc5dcbc6d7c8ab2ada38a99d2bd22e93b73e9a9a2a84626016740",
                "md5": "4041440603c869946b8c2db3c3ca493b",
                "sha256": "8ee4c2a75af9fe21269a4a0898c5425afb01af1f5d276063f57e2ae1bc64e191"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4041440603c869946b8c2db3c3ca493b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2037703,
            "upload_time": "2024-11-12T18:27:57",
            "upload_time_iso_8601": "2024-11-12T18:27:57.664662Z",
            "url": "https://files.pythonhosted.org/packages/48/a4/7bc31d7bc5dcbc6d7c8ab2ada38a99d2bd22e93b73e9a9a2a84626016740/pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cd88f68ab9d67c129dc046ad1aa105dc3a86c9ffb6c2243d44d7140381007ea",
                "md5": "27b5b0fb5fcdc15257a600bc0c2258b0",
                "sha256": "c91e3c04f5191fd3fb68764bddeaf02025492d5d9f23343b283870f6ace69708"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "27b5b0fb5fcdc15257a600bc0c2258b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2771401,
            "upload_time": "2024-11-12T18:28:00",
            "upload_time_iso_8601": "2024-11-12T18:28:00.692526Z",
            "url": "https://files.pythonhosted.org/packages/5c/d8/8f68ab9d67c129dc046ad1aa105dc3a86c9ffb6c2243d44d7140381007ea/pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ee1bb637cf80583bf9058b8e5a7645cdc99a8adf3941a58329ced63f4c63843",
                "md5": "e76057051ad02de056292ff2423cf87c",
                "sha256": "7a6ebfac28fd51890a61df36ef202adbd77d00ee5aca4a3dadb3d9ed49cfb929"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e76057051ad02de056292ff2423cf87c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2133159,
            "upload_time": "2024-11-12T18:28:04",
            "upload_time_iso_8601": "2024-11-12T18:28:04.113659Z",
            "url": "https://files.pythonhosted.org/packages/8e/e1/bb637cf80583bf9058b8e5a7645cdc99a8adf3941a58329ced63f4c63843/pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5082c9b7dc0b081a3f26ee321f56b67e5725ec94128d92f1e08525080ba2f2df",
                "md5": "8777fe621f9afe2fa293e87f2ec1b144",
                "sha256": "36aa167f69d8807ba7e341d67ea93e50fcaaf6bc433bb04939430fa3dab06f31"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "8777fe621f9afe2fa293e87f2ec1b144",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1983746,
            "upload_time": "2024-11-12T18:28:07",
            "upload_time_iso_8601": "2024-11-12T18:28:07.447694Z",
            "url": "https://files.pythonhosted.org/packages/50/82/c9b7dc0b081a3f26ee321f56b67e5725ec94128d92f1e08525080ba2f2df/pydantic_core-2.27.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65026b308344a5968a1b99959fb965e72525837f609adf2412d47769902b2db5",
                "md5": "ad17d537ba8797803f279c8462d0c4c4",
                "sha256": "3e8d89c276234579cd3d095d5fa2a44eb10db9a218664a17b56363cddf226ff3"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ad17d537ba8797803f279c8462d0c4c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1992306,
            "upload_time": "2024-11-12T18:28:09",
            "upload_time_iso_8601": "2024-11-12T18:28:09.965697Z",
            "url": "https://files.pythonhosted.org/packages/65/02/6b308344a5968a1b99959fb965e72525837f609adf2412d47769902b2db5/pydantic_core-2.27.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2d64f9c7059020863535810a027f993bb384da1f9af60b4d6364493661befb6",
                "md5": "1a61a03a184f4c69bb82a9a2797bb1a8",
                "sha256": "5cc822ab90a70ea3a91e6aed3afac570b276b1278c6909b1d384f745bd09c714"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-cp38-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1a61a03a184f4c69bb82a9a2797bb1a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2088195,
            "upload_time": "2024-11-12T18:28:12",
            "upload_time_iso_8601": "2024-11-12T18:28:12.559283Z",
            "url": "https://files.pythonhosted.org/packages/f2/d6/4f9c7059020863535810a027f993bb384da1f9af60b4d6364493661befb6/pydantic_core-2.27.0-cp38-cp38-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "801e896a1472a6d7863144e0738181cfdad872c90b57d5c1a5ee073838d751c5",
                "md5": "bef9d5653a8a4c53743638ce14070e28",
                "sha256": "e15315691fe2253eb447503153acef4d7223dfe7e7702f9ed66539fcd0c43801"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bef9d5653a8a4c53743638ce14070e28",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2142683,
            "upload_time": "2024-11-12T18:28:15",
            "upload_time_iso_8601": "2024-11-12T18:28:15.077370Z",
            "url": "https://files.pythonhosted.org/packages/80/1e/896a1472a6d7863144e0738181cfdad872c90b57d5c1a5ee073838d751c5/pydantic_core-2.27.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bfe773312dae0be37017e91e2684834bc971aca8f8b6f44e5395c7e4814ae52",
                "md5": "f92bec420f6f50c710da01a4867e9265",
                "sha256": "dfa5f5c0a4c8fced1422dc2ca7eefd872d5d13eb33cf324361dbf1dbfba0a9fe"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "f92bec420f6f50c710da01a4867e9265",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1817110,
            "upload_time": "2024-11-12T18:28:17",
            "upload_time_iso_8601": "2024-11-12T18:28:17.614819Z",
            "url": "https://files.pythonhosted.org/packages/8b/fe/773312dae0be37017e91e2684834bc971aca8f8b6f44e5395c7e4814ae52/pydantic_core-2.27.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90c1219e5b3c4dd33d88dee17479b5a3aace3c9c66f26cb7317acc33d74ef02a",
                "md5": "cefd2a756ddb630df6d0624b69a37483",
                "sha256": "513cb14c0cc31a4dfd849a4674b20c46d87b364f997bbcb02282306f5e187abf"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cefd2a756ddb630df6d0624b69a37483",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1970874,
            "upload_time": "2024-11-12T18:28:20",
            "upload_time_iso_8601": "2024-11-12T18:28:20.047211Z",
            "url": "https://files.pythonhosted.org/packages/90/c1/219e5b3c4dd33d88dee17479b5a3aace3c9c66f26cb7317acc33d74ef02a/pydantic_core-2.27.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00e44d6d9193a33c964920bf56fcbe11fa30511d3d900a81c740b0157579b122",
                "md5": "6dd65aee383b271b43c04a233427a651",
                "sha256": "4148dc9184ab79e356dc00a4199dc0ee8647973332cb385fc29a7cced49b9f9c"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6dd65aee383b271b43c04a233427a651",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1894360,
            "upload_time": "2024-11-12T18:28:22",
            "upload_time_iso_8601": "2024-11-12T18:28:22.464500Z",
            "url": "https://files.pythonhosted.org/packages/00/e4/4d6d9193a33c964920bf56fcbe11fa30511d3d900a81c740b0157579b122/pydantic_core-2.27.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4469d27771309609126678dee81e8e93188dbd0515a543b27e0a01a806c1893",
                "md5": "c69c1681f488524f2fef40ad222419a2",
                "sha256": "5fc72fbfebbf42c0856a824b8b0dc2b5cd2e4a896050281a21cfa6fed8879cb1"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c69c1681f488524f2fef40ad222419a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1773921,
            "upload_time": "2024-11-12T18:28:24",
            "upload_time_iso_8601": "2024-11-12T18:28:24.787490Z",
            "url": "https://files.pythonhosted.org/packages/f4/46/9d27771309609126678dee81e8e93188dbd0515a543b27e0a01a806c1893/pydantic_core-2.27.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a03a3a6a4cee7bc11bcb3f8859a63c6b4d88b8df66ad7c9c9e6d667dd894b439",
                "md5": "a54b49dc75181a4541746d3bac41e4bd",
                "sha256": "185ef205256cd8b38431205698531026979db89a79587725c1e55c59101d64e9"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a54b49dc75181a4541746d3bac41e4bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1829480,
            "upload_time": "2024-11-12T18:28:27",
            "upload_time_iso_8601": "2024-11-12T18:28:27.702046Z",
            "url": "https://files.pythonhosted.org/packages/a0/3a/3a6a4cee7bc11bcb3f8859a63c6b4d88b8df66ad7c9c9e6d667dd894b439/pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2baaecf0fcee9031eef516cef2e336d403a61bd8df75ab17a856bc29f3eb07d4",
                "md5": "c3f7e1cebf3496fb602e2844afff62e2",
                "sha256": "395e3e1148fa7809016231f8065f30bb0dc285a97b4dc4360cd86e17bab58af7"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c3f7e1cebf3496fb602e2844afff62e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1849759,
            "upload_time": "2024-11-12T18:28:30",
            "upload_time_iso_8601": "2024-11-12T18:28:30.013806Z",
            "url": "https://files.pythonhosted.org/packages/2b/aa/ecf0fcee9031eef516cef2e336d403a61bd8df75ab17a856bc29f3eb07d4/pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6178953bbbe7d3c015bdfa34171ba1738a43682d770e68c87171dd8887035c3",
                "md5": "19779f6b6778f5f105231ddd6c7fc41d",
                "sha256": "33d14369739c5d07e2e7102cdb0081a1fa46ed03215e07f097b34e020b83b1ae"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "19779f6b6778f5f105231ddd6c7fc41d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2035679,
            "upload_time": "2024-11-12T18:28:32",
            "upload_time_iso_8601": "2024-11-12T18:28:32.441247Z",
            "url": "https://files.pythonhosted.org/packages/b6/17/8953bbbe7d3c015bdfa34171ba1738a43682d770e68c87171dd8887035c3/pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec19514fdf2f684003961b6f34543f0bdf3be2e0f17b8b25cd8d44c343521148",
                "md5": "3d07ed2c1f34374ddaea3be3bc0da807",
                "sha256": "e7820bb0d65e3ce1e3e70b6708c2f66143f55912fa02f4b618d0f08b61575f12"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3d07ed2c1f34374ddaea3be3bc0da807",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2773208,
            "upload_time": "2024-11-12T18:28:34",
            "upload_time_iso_8601": "2024-11-12T18:28:34.896695Z",
            "url": "https://files.pythonhosted.org/packages/ec/19/514fdf2f684003961b6f34543f0bdf3be2e0f17b8b25cd8d44c343521148/pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a372cdd48b7367fbf0576d16402837212d2b1798aa4ea887f1795f8ddbace07",
                "md5": "6aeec32a2150484693128ba65f36e3d5",
                "sha256": "43b61989068de9ce62296cde02beffabcadb65672207fc51e7af76dca75e6636"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6aeec32a2150484693128ba65f36e3d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2130616,
            "upload_time": "2024-11-12T18:28:37",
            "upload_time_iso_8601": "2024-11-12T18:28:37.387552Z",
            "url": "https://files.pythonhosted.org/packages/9a/37/2cdd48b7367fbf0576d16402837212d2b1798aa4ea887f1795f8ddbace07/pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a6cfa100356e1c8f749797d88401a1d5ed8d458705d43e259931681b5b96ab4",
                "md5": "687e5314dcf8040a5b01c4394154d19f",
                "sha256": "15e350efb67b855cd014c218716feea4986a149ed1f42a539edd271ee074a196"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "687e5314dcf8040a5b01c4394154d19f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1981857,
            "upload_time": "2024-11-12T18:28:39",
            "upload_time_iso_8601": "2024-11-12T18:28:39.872928Z",
            "url": "https://files.pythonhosted.org/packages/3a/6c/fa100356e1c8f749797d88401a1d5ed8d458705d43e259931681b5b96ab4/pydantic_core-2.27.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f3d36c0c832c1fd1351c495bf1495b61b2e40248c54f7874e6df439e6ffb9a5",
                "md5": "5db5a77ce266f693609f1d9295b8d6ab",
                "sha256": "433689845288f9a1ee5714444e65957be26d30915f7745091ede4a83cfb2d7bb"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5db5a77ce266f693609f1d9295b8d6ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1992515,
            "upload_time": "2024-11-12T18:28:42",
            "upload_time_iso_8601": "2024-11-12T18:28:42.318755Z",
            "url": "https://files.pythonhosted.org/packages/0f/3d/36c0c832c1fd1351c495bf1495b61b2e40248c54f7874e6df439e6ffb9a5/pydantic_core-2.27.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9912ee67e29369b368c404c6aead492e1528ec887609d388a7a30b675b969b82",
                "md5": "48a89032b24ec94534c38e3f91699241",
                "sha256": "3fd8bc2690e7c39eecdf9071b6a889ce7b22b72073863940edc2a0a23750ca90"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-cp39-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "48a89032b24ec94534c38e3f91699241",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2087604,
            "upload_time": "2024-11-12T18:28:45",
            "upload_time_iso_8601": "2024-11-12T18:28:45.311859Z",
            "url": "https://files.pythonhosted.org/packages/99/12/ee67e29369b368c404c6aead492e1528ec887609d388a7a30b675b969b82/pydantic_core-2.27.0-cp39-cp39-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e6c72ca869aabe190e4cd36b03226286e430a1076c367097c77cb0704b1cbb3",
                "md5": "a4a1f34c8b52b4982c6b83ccd99c5697",
                "sha256": "884f1806609c2c66564082540cffc96868c5571c7c3cf3a783f63f2fb49bd3cd"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4a1f34c8b52b4982c6b83ccd99c5697",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2141000,
            "upload_time": "2024-11-12T18:28:47",
            "upload_time_iso_8601": "2024-11-12T18:28:47.607925Z",
            "url": "https://files.pythonhosted.org/packages/0e/6c/72ca869aabe190e4cd36b03226286e430a1076c367097c77cb0704b1cbb3/pydantic_core-2.27.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cb8e7499cfa6f1e46e92a645e74198b7bb9ce3d49e82f626a02726dc917fc74",
                "md5": "3a8c4649372163f0e711719f58d5a47e",
                "sha256": "bf37b72834e7239cf84d4a0b2c050e7f9e48bced97bad9bdf98d26b8eb72e846"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "3a8c4649372163f0e711719f58d5a47e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1813857,
            "upload_time": "2024-11-12T18:28:50",
            "upload_time_iso_8601": "2024-11-12T18:28:50.026365Z",
            "url": "https://files.pythonhosted.org/packages/5c/b8/e7499cfa6f1e46e92a645e74198b7bb9ce3d49e82f626a02726dc917fc74/pydantic_core-2.27.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e2781203aa6cbf68772afd9c3877ce2e35878f434e824aad4047e7cfd3bc14d",
                "md5": "fed87873c4cb9f2241c057efc29bb875",
                "sha256": "31a2cae5f059329f9cfe3d8d266d3da1543b60b60130d186d9b6a3c20a346361"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fed87873c4cb9f2241c057efc29bb875",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1974744,
            "upload_time": "2024-11-12T18:28:52",
            "upload_time_iso_8601": "2024-11-12T18:28:52.412798Z",
            "url": "https://files.pythonhosted.org/packages/2e/27/81203aa6cbf68772afd9c3877ce2e35878f434e824aad4047e7cfd3bc14d/pydantic_core-2.27.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3adc1dc814ab524cb247ceb6cb25236895a5cae996c438baf504db610fd6c92",
                "md5": "5b78a65dbedf124b5d783bcea7b8103a",
                "sha256": "4fb49cfdb53af5041aba909be00cccfb2c0d0a2e09281bf542371c5fd36ad04c"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b78a65dbedf124b5d783bcea7b8103a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1889233,
            "upload_time": "2024-11-12T18:28:54",
            "upload_time_iso_8601": "2024-11-12T18:28:54.762139Z",
            "url": "https://files.pythonhosted.org/packages/d3/ad/c1dc814ab524cb247ceb6cb25236895a5cae996c438baf504db610fd6c92/pydantic_core-2.27.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24bb069a9dd910e6c09aab90a118c08d3cb30dc5738550e9f2d21f3b086352c2",
                "md5": "e117c692fb749ff39052dd315dd55ede",
                "sha256": "49633583eb7dc5cba61aaf7cdb2e9e662323ad394e543ee77af265736bcd3eaa"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e117c692fb749ff39052dd315dd55ede",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1768419,
            "upload_time": "2024-11-12T18:28:57",
            "upload_time_iso_8601": "2024-11-12T18:28:57.107999Z",
            "url": "https://files.pythonhosted.org/packages/24/bb/069a9dd910e6c09aab90a118c08d3cb30dc5738550e9f2d21f3b086352c2/pydantic_core-2.27.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cba1f9b4e625ee8c7f683c8295c85d11f79a538eb53719f326646112a7800bda",
                "md5": "ed4ea32554cfa0b82b7e047c009b82ef",
                "sha256": "153017e3d6cd3ce979de06d84343ca424bb6092727375eba1968c8b4693c6ecb"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ed4ea32554cfa0b82b7e047c009b82ef",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1822870,
            "upload_time": "2024-11-12T18:29:00",
            "upload_time_iso_8601": "2024-11-12T18:29:00.111071Z",
            "url": "https://files.pythonhosted.org/packages/cb/a1/f9b4e625ee8c7f683c8295c85d11f79a538eb53719f326646112a7800bda/pydantic_core-2.27.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "120704abaeeabf212650de3edc300b2ab89fb17da9bc4408ef4e01a62efc87dc",
                "md5": "12eac6789ddddae04b4e7245ec1f3018",
                "sha256": "ff63a92f6e249514ef35bc795de10745be0226eaea06eb48b4bbeaa0c8850a4a"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12eac6789ddddae04b4e7245ec1f3018",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1977039,
            "upload_time": "2024-11-12T18:29:02",
            "upload_time_iso_8601": "2024-11-12T18:29:02.577436Z",
            "url": "https://files.pythonhosted.org/packages/12/07/04abaeeabf212650de3edc300b2ab89fb17da9bc4408ef4e01a62efc87dc/pydantic_core-2.27.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f9d99bbeb21d5be1d5affdc171e0e84603a757056f9f4293ef236e41af0a5bc",
                "md5": "035682304ba54ab41ca752d7d343a9c1",
                "sha256": "5982048129f40b082c2654de10c0f37c67a14f5ff9d37cf35be028ae982f26df"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "035682304ba54ab41ca752d7d343a9c1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1974317,
            "upload_time": "2024-11-12T18:29:05",
            "upload_time_iso_8601": "2024-11-12T18:29:05.013537Z",
            "url": "https://files.pythonhosted.org/packages/0f/9d/99bbeb21d5be1d5affdc171e0e84603a757056f9f4293ef236e41af0a5bc/pydantic_core-2.27.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f78815aa74db1591a9ad4086bc1bf98e2126686245a956d76cd4e72bf9841ad",
                "md5": "e6d8201f4126d24e0143eaeaaa43a949",
                "sha256": "91bc66f878557313c2a6bcf396e7befcffe5ab4354cfe4427318968af31143c3"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e6d8201f4126d24e0143eaeaaa43a949",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1985101,
            "upload_time": "2024-11-12T18:29:07",
            "upload_time_iso_8601": "2024-11-12T18:29:07.446559Z",
            "url": "https://files.pythonhosted.org/packages/5f/78/815aa74db1591a9ad4086bc1bf98e2126686245a956d76cd4e72bf9841ad/pydantic_core-2.27.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9a89c1557d5282108916448415e85f829b70ba99d97f03cee0e40a296e58a65",
                "md5": "a879c2d7b5d8cc2a73cf8ac11e7d9794",
                "sha256": "68ef5377eb582fa4343c9d0b57a5b094046d447b4c73dd9fbd9ffb216f829e7d"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a879c2d7b5d8cc2a73cf8ac11e7d9794",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2073399,
            "upload_time": "2024-11-12T18:29:09",
            "upload_time_iso_8601": "2024-11-12T18:29:09.989165Z",
            "url": "https://files.pythonhosted.org/packages/d9/a8/9c1557d5282108916448415e85f829b70ba99d97f03cee0e40a296e58a65/pydantic_core-2.27.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cab05296273d652fa9aa140771b3f4bb574edd3cbf397090625b988f6a57b02b",
                "md5": "8e98e37ff5a9d161b49e847b832af6b4",
                "sha256": "c5726eec789ee38f2c53b10b1821457b82274f81f4f746bb1e666d8741fcfadb"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e98e37ff5a9d161b49e847b832af6b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2129499,
            "upload_time": "2024-11-12T18:29:12",
            "upload_time_iso_8601": "2024-11-12T18:29:12.473083Z",
            "url": "https://files.pythonhosted.org/packages/ca/b0/5296273d652fa9aa140771b3f4bb574edd3cbf397090625b988f6a57b02b/pydantic_core-2.27.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9fd7f39ff702fdca954f26c84b40d9bf744733bb1a50ca6b7569822b9cbb7f4",
                "md5": "7dc37e819398962475e7e70c5d4357f0",
                "sha256": "c0c431e4be5c1a0c6654e0c31c661cd89e0ca956ef65305c3c3fd96f4e72ca39"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7dc37e819398962475e7e70c5d4357f0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1997246,
            "upload_time": "2024-11-12T18:29:15",
            "upload_time_iso_8601": "2024-11-12T18:29:15.642590Z",
            "url": "https://files.pythonhosted.org/packages/e9/fd/7f39ff702fdca954f26c84b40d9bf744733bb1a50ca6b7569822b9cbb7f4/pydantic_core-2.27.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb4f76f1ac16a0c277a3a8be2b5b52b0a09929630e794fb1938c4cd85396c34f",
                "md5": "7cb756ccb005cef0a5613871239f8026",
                "sha256": "8e21d927469d04b39386255bf00d0feedead16f6253dcc85e9e10ddebc334084"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7cb756ccb005cef0a5613871239f8026",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1889486,
            "upload_time": "2024-11-12T18:29:19",
            "upload_time_iso_8601": "2024-11-12T18:29:19.182181Z",
            "url": "https://files.pythonhosted.org/packages/bb/4f/76f1ac16a0c277a3a8be2b5b52b0a09929630e794fb1938c4cd85396c34f/pydantic_core-2.27.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3964ff5a8ec0c457afcd87334d4e2f6fd25df6642b4ff8bf587316dd6eccd59",
                "md5": "4c789bdd3507c826ac64b7740940ba46",
                "sha256": "4b51f964fcbb02949fc546022e56cdb16cda457af485e9a3e8b78ac2ecf5d77e"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4c789bdd3507c826ac64b7740940ba46",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1768718,
            "upload_time": "2024-11-12T18:29:22",
            "upload_time_iso_8601": "2024-11-12T18:29:22.570171Z",
            "url": "https://files.pythonhosted.org/packages/f3/96/4ff5a8ec0c457afcd87334d4e2f6fd25df6642b4ff8bf587316dd6eccd59/pydantic_core-2.27.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5221e7bab7b9674d5b1a8cf06939929991753e4b814b01bae29321a8739990b3",
                "md5": "0659df190ab1fe5f56ce6f48f05b0123",
                "sha256": "25a7fd4de38f7ff99a37e18fa0098c3140286451bc823d1746ba80cec5b433a1"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0659df190ab1fe5f56ce6f48f05b0123",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1823291,
            "upload_time": "2024-11-12T18:29:25",
            "upload_time_iso_8601": "2024-11-12T18:29:25.097538Z",
            "url": "https://files.pythonhosted.org/packages/52/21/e7bab7b9674d5b1a8cf06939929991753e4b814b01bae29321a8739990b3/pydantic_core-2.27.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d68d1868a78ce0d776c3e04179fbfa6272e72d4363c49f9bdecfe4b2007dd75",
                "md5": "92db05c82e31ca132d47fc7725505146",
                "sha256": "6fda87808429c520a002a85d6e7cdadbf58231d60e96260976c5b8f9a12a8e13"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "92db05c82e31ca132d47fc7725505146",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1977040,
            "upload_time": "2024-11-12T18:29:27",
            "upload_time_iso_8601": "2024-11-12T18:29:27.693548Z",
            "url": "https://files.pythonhosted.org/packages/1d/68/d1868a78ce0d776c3e04179fbfa6272e72d4363c49f9bdecfe4b2007dd75/pydantic_core-2.27.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "687b2e361ff81f60c4c28f65b53670436849ec716366d4f1635ea243a31903a2",
                "md5": "a4a1973a88e9d181f6c42601e8788f52",
                "sha256": "8a150392102c402c538190730fda06f3bce654fc498865579a9f2c1d2b425833"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a4a1973a88e9d181f6c42601e8788f52",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1973909,
            "upload_time": "2024-11-12T18:29:30",
            "upload_time_iso_8601": "2024-11-12T18:29:30.338184Z",
            "url": "https://files.pythonhosted.org/packages/68/7b/2e361ff81f60c4c28f65b53670436849ec716366d4f1635ea243a31903a2/pydantic_core-2.27.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a844a4a3718f3b148526baccdb9a0bc8e6b7aa840c796e637805c04aaf1a74c3",
                "md5": "280b8c467bedf437f8b80bb2ce07fe8a",
                "sha256": "c9ed88b398ba7e3bad7bd64d66cc01dcde9cfcb7ec629a6fd78a82fa0b559d78"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "280b8c467bedf437f8b80bb2ce07fe8a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1985091,
            "upload_time": "2024-11-12T18:29:32",
            "upload_time_iso_8601": "2024-11-12T18:29:32.865336Z",
            "url": "https://files.pythonhosted.org/packages/a8/44/a4a3718f3b148526baccdb9a0bc8e6b7aa840c796e637805c04aaf1a74c3/pydantic_core-2.27.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a792cdf503e8aac926a99d64b2a02642ab1377146999f9a68536c54bd8b2c46",
                "md5": "a6c47cb2e613ab9dd7dab56adedb7a02",
                "sha256": "9fe94d9d2a2b4edd7a4b22adcd45814b1b59b03feb00e56deb2e89747aec7bfe"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a6c47cb2e613ab9dd7dab56adedb7a02",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2073484,
            "upload_time": "2024-11-12T18:29:35",
            "upload_time_iso_8601": "2024-11-12T18:29:35.374452Z",
            "url": "https://files.pythonhosted.org/packages/3a/79/2cdf503e8aac926a99d64b2a02642ab1377146999f9a68536c54bd8b2c46/pydantic_core-2.27.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e81574c61b7ea348b252fe97a32e5b531fdde331710db80e9b0fae1302023414",
                "md5": "245af8bc6052360788b5a5089924f7ee",
                "sha256": "d8b5ee4ae9170e2775d495b81f414cc20268041c42571530513496ba61e94ba3"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "245af8bc6052360788b5a5089924f7ee",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2129473,
            "upload_time": "2024-11-12T18:29:38",
            "upload_time_iso_8601": "2024-11-12T18:29:38.343415Z",
            "url": "https://files.pythonhosted.org/packages/e8/15/74c61b7ea348b252fe97a32e5b531fdde331710db80e9b0fae1302023414/pydantic_core-2.27.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57810e9ebcc80b107e1dfacc677ad7c2ab0202cc0e10ba76b23afbb147ac32fb",
                "md5": "1d6900016fa4e2d48061810f4989dc50",
                "sha256": "d29e235ce13c91902ef3efc3d883a677655b3908b1cbc73dee816e5e1f8f7739"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1d6900016fa4e2d48061810f4989dc50",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1997389,
            "upload_time": "2024-11-12T18:29:40",
            "upload_time_iso_8601": "2024-11-12T18:29:40.882513Z",
            "url": "https://files.pythonhosted.org/packages/57/81/0e9ebcc80b107e1dfacc677ad7c2ab0202cc0e10ba76b23afbb147ac32fb/pydantic_core-2.27.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1cd8331ae216bcc5a3f2d4c6b941c9f63de647e2700d38133f4f7e0132a00c4",
                "md5": "577afcaa532c09b32ff16ab3b1f4b425",
                "sha256": "f57783fbaf648205ac50ae7d646f27582fc706be3977e87c3c124e7a92407b10"
            },
            "downloads": -1,
            "filename": "pydantic_core-2.27.0.tar.gz",
            "has_sig": false,
            "md5_digest": "577afcaa532c09b32ff16ab3b1f4b425",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 412675,
            "upload_time": "2024-11-12T18:29:44",
            "upload_time_iso_8601": "2024-11-12T18:29:44.114847Z",
            "url": "https://files.pythonhosted.org/packages/d1/cd/8331ae216bcc5a3f2d4c6b941c9f63de647e2700d38133f4f7e0132a00c4/pydantic_core-2.27.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-12 18:29:44",
    "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.54985s