# pydantic-core
[](https://github.com/pydantic/pydantic-core/actions?query=event%3Apush+branch%3Amain+workflow%3Aci)
[](https://codecov.io/gh/pydantic/pydantic-core)
[](https://pypi.python.org/pypi/pydantic-core)
[](https://github.com/pydantic/pydantic-core)
[](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.9+ 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.9",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Samuel Colvin <s@muelcolvin.com>, Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, David Montague <david@pydantic.dev>, David Hewitt <mail@davidhewitt.dev>, Sydney Runkle <sydneymarierunkle@gmail.com>, Victorien Plot <contact@vctrn.dev>",
"download_url": "https://files.pythonhosted.org/packages/e2/83/89a5f16880bf4300a7749f3149c2bf16f59ac75e87705062820e6910ca0b/pydantic_core-2.37.1.tar.gz",
"platform": null,
"description": "# pydantic-core\n\n[](https://github.com/pydantic/pydantic-core/actions?query=event%3Apush+branch%3Amain+workflow%3Aci)\n[](https://codecov.io/gh/pydantic/pydantic-core)\n[](https://pypi.python.org/pypi/pydantic-core)\n[](https://github.com/pydantic/pydantic-core)\n[](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.9+ 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.37.1",
"project_urls": {
"Funding": "https://github.com/sponsors/samuelcolvin",
"Homepage": "https://github.com/pydantic/pydantic-core",
"Source": "https://github.com/pydantic/pydantic-core"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "a8475b4e4d9aeed7c6caa56286a10d6b80be95614e2052bd9ef9fbe3e7c23da2",
"md5": "3b62359ea05016cdd14b09326434d757",
"sha256": "60c82405f28ad640f280fb623f5c33ecc81b9b155bbe26043c37e489e02edc1b"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "3b62359ea05016cdd14b09326434d757",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2115981,
"upload_time": "2025-07-25T17:45:50",
"upload_time_iso_8601": "2025-07-25T17:45:50.041066Z",
"url": "https://files.pythonhosted.org/packages/a8/47/5b4e4d9aeed7c6caa56286a10d6b80be95614e2052bd9ef9fbe3e7c23da2/pydantic_core-2.37.1-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ae552373150aee8473aba9dce7a05058826f9ebc86daede5c10f140037a29b1",
"md5": "4217ce848e073ef04c14bdc92335ef7b",
"sha256": "e4c50e6aa7b632fc4485f35abf25c73a979f0398ca373c112312c165e614ab09"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4217ce848e073ef04c14bdc92335ef7b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1880546,
"upload_time": "2025-07-25T17:45:51",
"upload_time_iso_8601": "2025-07-25T17:45:51.729849Z",
"url": "https://files.pythonhosted.org/packages/5a/e5/52373150aee8473aba9dce7a05058826f9ebc86daede5c10f140037a29b1/pydantic_core-2.37.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de1bcd92db7d9c24d725e034c6d6765560fabd88f2ef0aa0c33218057327430c",
"md5": "4ae6d5a34467d227c8619146b868b019",
"sha256": "69c098c48586639a9eede6b411376d35791fa9fa9c80e2a16e18103bbfdea0dd"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4ae6d5a34467d227c8619146b868b019",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1964405,
"upload_time": "2025-07-25T17:45:52",
"upload_time_iso_8601": "2025-07-25T17:45:52.803136Z",
"url": "https://files.pythonhosted.org/packages/de/1b/cd92db7d9c24d725e034c6d6765560fabd88f2ef0aa0c33218057327430c/pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ca8b988da985b1423c628a3b9a78045b2ceec5e55151e43f717688924f7ea4d",
"md5": "31df3fbe90e853d0695413016faffc46",
"sha256": "4809cda7e1e89595bd9c5bd827a0d2de12eef5d6739fdde98e702ab98d091e96"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "31df3fbe90e853d0695413016faffc46",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2040500,
"upload_time": "2025-07-25T17:45:53",
"upload_time_iso_8601": "2025-07-25T17:45:53.878085Z",
"url": "https://files.pythonhosted.org/packages/8c/a8/b988da985b1423c628a3b9a78045b2ceec5e55151e43f717688924f7ea4d/pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9ea0a368bbb753840783dffca7c99ae0033388dd6bac505d8bdcca235760621f",
"md5": "11e6e2c6e442620666f8b2a368ad6996",
"sha256": "7a9d773dd25770fb34967a598a5272531d8f2442923241dc556644e75e11336a"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "11e6e2c6e442620666f8b2a368ad6996",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2227728,
"upload_time": "2025-07-25T17:45:55",
"upload_time_iso_8601": "2025-07-25T17:45:55.369764Z",
"url": "https://files.pythonhosted.org/packages/9e/a0/a368bbb753840783dffca7c99ae0033388dd6bac505d8bdcca235760621f/pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a84dd485603d701a8c91926fb9c302fc4ce746af186781cc150e5123b3c51cba",
"md5": "47452e9432fd01485c4088b8c0323529",
"sha256": "6c73591afc7579ca3a96294b33b43b16761d16cff3d41f557e421a0f3cd58126"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "47452e9432fd01485c4088b8c0323529",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2307400,
"upload_time": "2025-07-25T17:45:56",
"upload_time_iso_8601": "2025-07-25T17:45:56.469965Z",
"url": "https://files.pythonhosted.org/packages/a8/4d/d485603d701a8c91926fb9c302fc4ce746af186781cc150e5123b3c51cba/pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d65cc9aa5a52f9bf3da2290820a2110586ac858ee2a85a21da801f08593c368e",
"md5": "294ea39f07479ae8966dc340fc37d769",
"sha256": "9956f6f149ab72a18e7af0d451b12d8ecf8e4554095953cc66b47b2d28dd9ae5"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "294ea39f07479ae8966dc340fc37d769",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2035742,
"upload_time": "2025-07-25T17:45:57",
"upload_time_iso_8601": "2025-07-25T17:45:57.926463Z",
"url": "https://files.pythonhosted.org/packages/d6/5c/c9aa5a52f9bf3da2290820a2110586ac858ee2a85a21da801f08593c368e/pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a2ccb6a6775c4f9ef0881e500e83b1697c0084c746f5a8810fbf773b45f998b",
"md5": "bc1f0bb3dc5117c320e19cbeb5a65cc2",
"sha256": "523201ea3e591ab140282dca831835b8af8b1dd84be6c9db4ed9336230bfaa12"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "bc1f0bb3dc5117c320e19cbeb5a65cc2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2179569,
"upload_time": "2025-07-25T17:45:59",
"upload_time_iso_8601": "2025-07-25T17:45:59.357708Z",
"url": "https://files.pythonhosted.org/packages/1a/2c/cb6a6775c4f9ef0881e500e83b1697c0084c746f5a8810fbf773b45f998b/pydantic_core-2.37.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89a9fefc54b49b4cbda15549bd21afb974029da71430214079dbf1436d133606",
"md5": "d56a4fc586048e46a9c213653eebf803",
"sha256": "8d87facb8f0a1dd71ae07ea5ff568bea9d65ef587ca9d447e55b7b5f444b4021"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "d56a4fc586048e46a9c213653eebf803",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2140621,
"upload_time": "2025-07-25T17:46:01",
"upload_time_iso_8601": "2025-07-25T17:46:01.570128Z",
"url": "https://files.pythonhosted.org/packages/89/a9/fefc54b49b4cbda15549bd21afb974029da71430214079dbf1436d133606/pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a1dbbaa516013744a643aa977dff3d8f7aebb91c7656499d50c8b2aa0a6def11",
"md5": "cef3ebb66fc3013f8646aff94e59b236",
"sha256": "a4eac4654739443884ed4ef5c84ccae7afcd1815d396ca53d9e9c7e046f4f122"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "cef3ebb66fc3013f8646aff94e59b236",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2308740,
"upload_time": "2025-07-25T17:46:03",
"upload_time_iso_8601": "2025-07-25T17:46:03.230867Z",
"url": "https://files.pythonhosted.org/packages/a1/db/baa516013744a643aa977dff3d8f7aebb91c7656499d50c8b2aa0a6def11/pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "08e901bffa4429251b6320ff3c904a016637d9220f7e674367eaaa3af60488aa",
"md5": "e351c8378752235520baf5ef0b25c967",
"sha256": "b7f000f80bf9ab90418de15c956494f118ee8a104c62300697d8307c98cd5f76"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e351c8378752235520baf5ef0b25c967",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2320552,
"upload_time": "2025-07-25T17:46:04",
"upload_time_iso_8601": "2025-07-25T17:46:04.710808Z",
"url": "https://files.pythonhosted.org/packages/08/e9/01bffa4429251b6320ff3c904a016637d9220f7e674367eaaa3af60488aa/pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99f3b9faa6ba401a622e23a104ff8ffa537f4edc1929694e054741e2642e6da9",
"md5": "13e4b21c568847a6f4bc15edfb2f5c14",
"sha256": "0998b9590443c3311398edf585d6b62c904880f8682c297058254f63d60b4f47"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "13e4b21c568847a6f4bc15edfb2f5c14",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1965341,
"upload_time": "2025-07-25T17:46:05",
"upload_time_iso_8601": "2025-07-25T17:46:05.828027Z",
"url": "https://files.pythonhosted.org/packages/99/f3/b9faa6ba401a622e23a104ff8ffa537f4edc1929694e054741e2642e6da9/pydantic_core-2.37.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e1aa4d1701328fee3d81aba9f07634375db7ecd574eabcfa8a529a77e734a9b8",
"md5": "843ea6d1b84d4757e9424299b16a7935",
"sha256": "b2347d10fdd659193943a9fc5be819bb390795c7bf4b7b78e1be0f0c0dec893e"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "843ea6d1b84d4757e9424299b16a7935",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1994031,
"upload_time": "2025-07-25T17:46:07",
"upload_time_iso_8601": "2025-07-25T17:46:07.354427Z",
"url": "https://files.pythonhosted.org/packages/e1/aa/4d1701328fee3d81aba9f07634375db7ecd574eabcfa8a529a77e734a9b8/pydantic_core-2.37.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a28af8398a524b28a5190ade47c9ec58d6c09fc2c44075df82fb9ed319d42cea",
"md5": "b0b4bf888591a12485967503ec663e92",
"sha256": "6d14b21eeb3237e983ed0dfdc3c88cc1e2d0c3519d59ccd1992ea38dd3426d16"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b0b4bf888591a12485967503ec663e92",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2115265,
"upload_time": "2025-07-25T17:46:08",
"upload_time_iso_8601": "2025-07-25T17:46:08.911585Z",
"url": "https://files.pythonhosted.org/packages/a2/8a/f8398a524b28a5190ade47c9ec58d6c09fc2c44075df82fb9ed319d42cea/pydantic_core-2.37.1-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23f8adc6ce1bb9de4f0dc7195df6024230bcdf6d3bfb3c04f50e8ad1fead28a3",
"md5": "01a39bbf13ab7b1c5771db38d37d74d5",
"sha256": "91d1bd38c2aadb10b2bbd4d929edfa9b3ed6a2875e2ce1ebee32d4725d0f040a"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "01a39bbf13ab7b1c5771db38d37d74d5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1878670,
"upload_time": "2025-07-25T17:46:10",
"upload_time_iso_8601": "2025-07-25T17:46:10.411763Z",
"url": "https://files.pythonhosted.org/packages/23/f8/adc6ce1bb9de4f0dc7195df6024230bcdf6d3bfb3c04f50e8ad1fead28a3/pydantic_core-2.37.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "407574599bfa581eb2829809d04cfda5584e3ba112b7aaeff074afe527b93a76",
"md5": "5b6ea55df69d532bbf80780823210687",
"sha256": "9056a20f0debf502dc95be71da53fb3ab53ca50f9d7f450ea21470d0d0ab7114"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5b6ea55df69d532bbf80780823210687",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1964822,
"upload_time": "2025-07-25T17:46:11",
"upload_time_iso_8601": "2025-07-25T17:46:11.635607Z",
"url": "https://files.pythonhosted.org/packages/40/75/74599bfa581eb2829809d04cfda5584e3ba112b7aaeff074afe527b93a76/pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "631fda432a837f971d6882b5027d0f70f85aaea9b3ee02b7a64ea0e06652dcaf",
"md5": "a37fee6d954d011c65a7199456827529",
"sha256": "ff20c1877e63bcb4e39bcd0455d32bb73cd451aa7c7cb17bfd9cb537ea630228"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a37fee6d954d011c65a7199456827529",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2041514,
"upload_time": "2025-07-25T17:46:12",
"upload_time_iso_8601": "2025-07-25T17:46:12.885112Z",
"url": "https://files.pythonhosted.org/packages/63/1f/da432a837f971d6882b5027d0f70f85aaea9b3ee02b7a64ea0e06652dcaf/pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6127efa25391f4c32f71125b2464116ddefaf9fefbdde15239970372bed8861a",
"md5": "646e21372f924c699e43cc9c66d8aa52",
"sha256": "97977d11c377b8aa1f5389661fdf684277199d2ede3b37bbf6da29f3afcdb1f0"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "646e21372f924c699e43cc9c66d8aa52",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2227977,
"upload_time": "2025-07-25T17:46:14",
"upload_time_iso_8601": "2025-07-25T17:46:14.154684Z",
"url": "https://files.pythonhosted.org/packages/61/27/efa25391f4c32f71125b2464116ddefaf9fefbdde15239970372bed8861a/pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41b1cca3dc88f69862c0478e38bab02d85978fa3d6e28f9372f9b86026820807",
"md5": "82840f76d935d08e7a396ba5df264bc0",
"sha256": "80458dba9e06335822601e68427d45e0e963d0972d813136af2a3e831a9bd913"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "82840f76d935d08e7a396ba5df264bc0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2306541,
"upload_time": "2025-07-25T17:46:15",
"upload_time_iso_8601": "2025-07-25T17:46:15.326269Z",
"url": "https://files.pythonhosted.org/packages/41/b1/cca3dc88f69862c0478e38bab02d85978fa3d6e28f9372f9b86026820807/pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8c9f69b73820dc7749533fca407f30064b771843612cfa259b1f497cbaddf65",
"md5": "9e49bf915762f0187d4e635defcbfb4f",
"sha256": "2585236efd84a1495b6b0cd83fc6a2b2188ddbdf6a59eac7b9d0b87436d3489a"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9e49bf915762f0187d4e635defcbfb4f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2033748,
"upload_time": "2025-07-25T17:46:16",
"upload_time_iso_8601": "2025-07-25T17:46:16.704386Z",
"url": "https://files.pythonhosted.org/packages/d8/c9/f69b73820dc7749533fca407f30064b771843612cfa259b1f497cbaddf65/pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f2d0108f42b1df021cce9853bb2dede3f97f5a535f27ef4c6ded98cb5be6e86",
"md5": "490c2472080bec8552dc7e90487380a9",
"sha256": "c11eb9b48af3e786b8db68ff71c9245b9177907947280d13cf4e5af88398a953"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "490c2472080bec8552dc7e90487380a9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2180581,
"upload_time": "2025-07-25T17:46:18",
"upload_time_iso_8601": "2025-07-25T17:46:18.245574Z",
"url": "https://files.pythonhosted.org/packages/3f/2d/0108f42b1df021cce9853bb2dede3f97f5a535f27ef4c6ded98cb5be6e86/pydantic_core-2.37.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b93f97e1ea49c1412788aba13f59c5db0554b19e07db89da2499b61629b7c4b",
"md5": "bb0993f72a5e9221ed9f26eae4af1571",
"sha256": "b10471cf782add3f165060c38686185e7f11fe0a677252e3368c369acff1594f"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "bb0993f72a5e9221ed9f26eae4af1571",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2140408,
"upload_time": "2025-07-25T17:46:19",
"upload_time_iso_8601": "2025-07-25T17:46:19.731843Z",
"url": "https://files.pythonhosted.org/packages/5b/93/f97e1ea49c1412788aba13f59c5db0554b19e07db89da2499b61629b7c4b/pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c3eac3e02d82012cc33a33febd9a32746ddd538aff608170d0651227caa25efe",
"md5": "a93fe708d4d3c1eacee73987e2fa6e4e",
"sha256": "6508b249425e940be1db5453c60607bb72943c96e9378d3027c7998e6f9dfb38"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "a93fe708d4d3c1eacee73987e2fa6e4e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2309919,
"upload_time": "2025-07-25T17:46:21",
"upload_time_iso_8601": "2025-07-25T17:46:21.219852Z",
"url": "https://files.pythonhosted.org/packages/c3/ea/c3e02d82012cc33a33febd9a32746ddd538aff608170d0651227caa25efe/pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b7304735dc3728d2a562686e1221868b32d222e6fb961d1c958fb890f260efdf",
"md5": "e9bfb5e70d3c0104a18ff5711f492516",
"sha256": "a7c6891f3379564820484dcf05eed5c13551862e939293f77cec408f80d82645"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e9bfb5e70d3c0104a18ff5711f492516",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2320001,
"upload_time": "2025-07-25T17:46:22",
"upload_time_iso_8601": "2025-07-25T17:46:22.496311Z",
"url": "https://files.pythonhosted.org/packages/b7/30/4735dc3728d2a562686e1221868b32d222e6fb961d1c958fb890f260efdf/pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6e46de24abc9f784683bddeca888d214f951bd9f32e2666007fab0bf77b127b8",
"md5": "5412b4a824555365c3647eb9bf7f9fc2",
"sha256": "3a2d6e41da71991db083d8f272b01dcf0d69434154666da6c6ad1a8d04861647"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "5412b4a824555365c3647eb9bf7f9fc2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1965039,
"upload_time": "2025-07-25T17:46:23",
"upload_time_iso_8601": "2025-07-25T17:46:23.786149Z",
"url": "https://files.pythonhosted.org/packages/6e/46/de24abc9f784683bddeca888d214f951bd9f32e2666007fab0bf77b127b8/pydantic_core-2.37.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90b76be2863e9646a3b417d292f0608d6384c59e32b4676b558b8a6581e49f3e",
"md5": "c2dac83bb16d5f790eec60191088d120",
"sha256": "c2bc6ee61af7023eea9125c026c396482fe76f19962e12c7705b7493d233564b"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "c2dac83bb16d5f790eec60191088d120",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1992358,
"upload_time": "2025-07-25T17:46:25",
"upload_time_iso_8601": "2025-07-25T17:46:25.147382Z",
"url": "https://files.pythonhosted.org/packages/90/b7/6be2863e9646a3b417d292f0608d6384c59e32b4676b558b8a6581e49f3e/pydantic_core-2.37.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea5e51703eac33d01418769774d77b7197ee1ce8a345ade28cf5451a0d94d142",
"md5": "a5951de793c558db0c73a6ccd11158ca",
"sha256": "d50213ffde69c1f0f59ac1592f90cbc160daf4d2c49555a47f081f95520daac1"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "a5951de793c558db0c73a6ccd11158ca",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1965457,
"upload_time": "2025-07-25T17:46:26",
"upload_time_iso_8601": "2025-07-25T17:46:26.450852Z",
"url": "https://files.pythonhosted.org/packages/ea/5e/51703eac33d01418769774d77b7197ee1ce8a345ade28cf5451a0d94d142/pydantic_core-2.37.1-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2dff817e138e54ecadd57c5013ad48e90bfe316a3de112ab159540d007867dc1",
"md5": "68774f0661f0388f39dd556538202f28",
"sha256": "b70d92843f0ad975b6975c6231511822b5109af70fdb99b40f6994d136f92d65"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "68774f0661f0388f39dd556538202f28",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2086850,
"upload_time": "2025-07-25T17:46:27",
"upload_time_iso_8601": "2025-07-25T17:46:27.823233Z",
"url": "https://files.pythonhosted.org/packages/2d/ff/817e138e54ecadd57c5013ad48e90bfe316a3de112ab159540d007867dc1/pydantic_core-2.37.1-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c7675f8b395de7eb12abc688784347c4a30248717d9b9f7fec00dad0e2c7b36",
"md5": "519adc8a2adb6767f728fca08bb76fc1",
"sha256": "3697e8eb3bcfe6b5a42edee74348fdb5d7347b9e1628e7f9f722a460f69a1397"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "519adc8a2adb6767f728fca08bb76fc1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1876773,
"upload_time": "2025-07-25T17:46:29",
"upload_time_iso_8601": "2025-07-25T17:46:29.141426Z",
"url": "https://files.pythonhosted.org/packages/6c/76/75f8b395de7eb12abc688784347c4a30248717d9b9f7fec00dad0e2c7b36/pydantic_core-2.37.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "752592d8feb6c03eba2a32e8d471517a7f8c677c0818d69f17de80c411d1d719",
"md5": "c1e0f6608d42cee473f17c1265221b5e",
"sha256": "944870ab0ee62d9473dcdcc600e2544a9f64a95b94f2ff1c0116318cc8fb4849"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c1e0f6608d42cee473f17c1265221b5e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1935185,
"upload_time": "2025-07-25T17:46:30",
"upload_time_iso_8601": "2025-07-25T17:46:30.499404Z",
"url": "https://files.pythonhosted.org/packages/75/25/92d8feb6c03eba2a32e8d471517a7f8c677c0818d69f17de80c411d1d719/pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "88ef11baf6791c87e95cb5429a9bdc0ec1f3f0fd92dd9a0b17eeadc21f62181a",
"md5": "2a5af1222dcabd15ebebd07c2ac1d020",
"sha256": "922fba5089265c9a2942b0f70dbcc0b58411ea89b5d6cfcd2cac9260df37496d"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2a5af1222dcabd15ebebd07c2ac1d020",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2022344,
"upload_time": "2025-07-25T17:46:32",
"upload_time_iso_8601": "2025-07-25T17:46:32.125882Z",
"url": "https://files.pythonhosted.org/packages/88/ef/11baf6791c87e95cb5429a9bdc0ec1f3f0fd92dd9a0b17eeadc21f62181a/pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b73ffcd60b9d8879de3b808f74222adbec4ceeffbe5545cedf4f4390a56b07e",
"md5": "a4b7a016dc6bd42fdba807a87372d508",
"sha256": "d28a602f01ca1d13f67b008da2193120331dd0e2b13ddf7b359e655bf6bedf74"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a4b7a016dc6bd42fdba807a87372d508",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2188944,
"upload_time": "2025-07-25T17:46:33",
"upload_time_iso_8601": "2025-07-25T17:46:33.580880Z",
"url": "https://files.pythonhosted.org/packages/6b/73/ffcd60b9d8879de3b808f74222adbec4ceeffbe5545cedf4f4390a56b07e/pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c92193dffdb843ce8d58f17cf5dc52f03027344e23f30a6ef4acaf3d2b5507e1",
"md5": "6ed62f349c15270a87eb63c7899f1069",
"sha256": "b911e8a5e4e172e33ff383370dab03e4468834ff03752f0831d25d7739a61c82"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6ed62f349c15270a87eb63c7899f1069",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2305191,
"upload_time": "2025-07-25T17:46:34",
"upload_time_iso_8601": "2025-07-25T17:46:34.982270Z",
"url": "https://files.pythonhosted.org/packages/c9/21/93dffdb843ce8d58f17cf5dc52f03027344e23f30a6ef4acaf3d2b5507e1/pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9645ae60a3d4c45e1d044c2c89df2d79202938f95175b8547464cfb2cb799646",
"md5": "cdb2fd1509308b463ba2f03579119ced",
"sha256": "6e770c9bb0cf8e93f58b82c3bc26dfc29ac01c113fa681a2991e396de112f72f"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cdb2fd1509308b463ba2f03579119ced",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2043588,
"upload_time": "2025-07-25T17:46:36",
"upload_time_iso_8601": "2025-07-25T17:46:36.361970Z",
"url": "https://files.pythonhosted.org/packages/96/45/ae60a3d4c45e1d044c2c89df2d79202938f95175b8547464cfb2cb799646/pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f3db7b7489d9d83f9a77bcb33dcff49f81a89cd379c393786279f7d6bf9ca46",
"md5": "ee1b6db1d4f9d5d4dc475b6fa45ad4d1",
"sha256": "490aa51b4e6a2ae6e2721c9837be072dd832f9884f04d97b5e3714610985be86"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ee1b6db1d4f9d5d4dc475b6fa45ad4d1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2161615,
"upload_time": "2025-07-25T17:46:38",
"upload_time_iso_8601": "2025-07-25T17:46:38.146732Z",
"url": "https://files.pythonhosted.org/packages/0f/3d/b7b7489d9d83f9a77bcb33dcff49f81a89cd379c393786279f7d6bf9ca46/pydantic_core-2.37.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "723d07f4ce3f32d2956dcad53797a7b6ad67c81b5432bccdf4d8383b87e40d60",
"md5": "edcae3481cc2b1c3b0d081e441f0b690",
"sha256": "5b5576534d0a37b9b3b073990d3534c82397d334be2dfd8cf93c40bcc0eab4f1"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "edcae3481cc2b1c3b0d081e441f0b690",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2113442,
"upload_time": "2025-07-25T17:46:39",
"upload_time_iso_8601": "2025-07-25T17:46:39.599544Z",
"url": "https://files.pythonhosted.org/packages/72/3d/07f4ce3f32d2956dcad53797a7b6ad67c81b5432bccdf4d8383b87e40d60/pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aede5b0138c52ea3afa4585559331cedd4c935311cda7360bcee0b33e5586659",
"md5": "a30bdae4868b3af2481d4159d7330935",
"sha256": "7bb512b4a1653ab463118e412d08ebfc37fc4f68f9bc0c333fbecd5220458606"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "a30bdae4868b3af2481d4159d7330935",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2298239,
"upload_time": "2025-07-25T17:46:41",
"upload_time_iso_8601": "2025-07-25T17:46:41.032639Z",
"url": "https://files.pythonhosted.org/packages/ae/de/5b0138c52ea3afa4585559331cedd4c935311cda7360bcee0b33e5586659/pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2d8e27fc6df4dee97089cb4b1a6288f0eae4b07e7dacdc7ba5c96f59ba9c7a4f",
"md5": "5fb105012d0f1862f50976c01ff8dbed",
"sha256": "70f5031319a3e0c41263c32837d6cdcaf687128933b3f7775f50371b58d40ce3"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5fb105012d0f1862f50976c01ff8dbed",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2300869,
"upload_time": "2025-07-25T17:46:42",
"upload_time_iso_8601": "2025-07-25T17:46:42.474134Z",
"url": "https://files.pythonhosted.org/packages/2d/8e/27fc6df4dee97089cb4b1a6288f0eae4b07e7dacdc7ba5c96f59ba9c7a4f/pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f583b6a75e84a144c8a9ba0fed71c60a875b3ac5e735c39930d39211708fd6b",
"md5": "44b139e1b298b60be8fe1371e1ccd170",
"sha256": "690b2c3584d7f7c1185519e5fab4ff81f2d5555df9db382b0c5b13dcaf208799"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "44b139e1b298b60be8fe1371e1ccd170",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1934804,
"upload_time": "2025-07-25T17:46:43",
"upload_time_iso_8601": "2025-07-25T17:46:43.830402Z",
"url": "https://files.pythonhosted.org/packages/9f/58/3b6a75e84a144c8a9ba0fed71c60a875b3ac5e735c39930d39211708fd6b/pydantic_core-2.37.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ab16a0a902e1a2b25805282d95dc1b20319a4b38278e08aa9c00a0858cc5ca7e",
"md5": "319ceffc42c3b7c24772350d09bb5ac5",
"sha256": "fbcad73009d1e193f883e7e2894af0af9d8c0fdf89a7240abb24cbc5f6df4b87"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "319ceffc42c3b7c24772350d09bb5ac5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2001880,
"upload_time": "2025-07-25T17:46:45",
"upload_time_iso_8601": "2025-07-25T17:46:45.224920Z",
"url": "https://files.pythonhosted.org/packages/ab/16/a0a902e1a2b25805282d95dc1b20319a4b38278e08aa9c00a0858cc5ca7e/pydantic_core-2.37.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ddde7b8725443b165d75331bbe0c49da0496e0f47b36d7cc8ff535d3a56ca25b",
"md5": "4b74f45012ce54c931cc2f7233c67efa",
"sha256": "0694c6d6af18f59cfef44b4c767d9bf9ef998c498a1a9de6eba311b7c9c52d6a"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "4b74f45012ce54c931cc2f7233c67efa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1946500,
"upload_time": "2025-07-25T17:46:46",
"upload_time_iso_8601": "2025-07-25T17:46:46.694320Z",
"url": "https://files.pythonhosted.org/packages/dd/de/7b8725443b165d75331bbe0c49da0496e0f47b36d7cc8ff535d3a56ca25b/pydantic_core-2.37.1-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "81ae2b071cc6d7c94a0b34458ff203b6bedc31585653463f761969505f944ab9",
"md5": "befd5ab2e7aac2596af8dfb6caf485aa",
"sha256": "49ef99d1306fb78160ffd2ec001950f792f448e1c364740b0681da4528637cc7"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "befd5ab2e7aac2596af8dfb6caf485aa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2091832,
"upload_time": "2025-07-25T17:46:48",
"upload_time_iso_8601": "2025-07-25T17:46:48.164907Z",
"url": "https://files.pythonhosted.org/packages/81/ae/2b071cc6d7c94a0b34458ff203b6bedc31585653463f761969505f944ab9/pydantic_core-2.37.1-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e9813143bfd7b12ecef13820cb25f3ae93a4dfdeaf9609f5098d57db720a7a58",
"md5": "a39d037144b3afc6f0192b7883cae182",
"sha256": "f2af343d3ebc2d01c9cf980d95b671cc33c3d5616aca0f7b383bdac5c75512cd"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a39d037144b3afc6f0192b7883cae182",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1876145,
"upload_time": "2025-07-25T17:46:49",
"upload_time_iso_8601": "2025-07-25T17:46:49.667354Z",
"url": "https://files.pythonhosted.org/packages/e9/81/3143bfd7b12ecef13820cb25f3ae93a4dfdeaf9609f5098d57db720a7a58/pydantic_core-2.37.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1bd2b5e4e28d2bd76350155f4d719b2f8725cb81989dd6b997ebc41f77b45e96",
"md5": "2cba0198e623ddbc3901d3cefede1f12",
"sha256": "ae8b31cd0405011fbb7a1e426b914b11a348580d95a853a2c1b3c7c98757451a"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2cba0198e623ddbc3901d3cefede1f12",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1940114,
"upload_time": "2025-07-25T17:46:51",
"upload_time_iso_8601": "2025-07-25T17:46:51.437755Z",
"url": "https://files.pythonhosted.org/packages/1b/d2/b5e4e28d2bd76350155f4d719b2f8725cb81989dd6b997ebc41f77b45e96/pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89f04f57b7349943f82d2b2fec569bafefe537ac40304eba1df1d27a46f20cff",
"md5": "db9beace7c945ddddc5766cc55484c5a",
"sha256": "62f2377e194ab6b0f0dd4424f8de1aca7f3734fe80980239476ec7041c105eaf"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "db9beace7c945ddddc5766cc55484c5a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2031501,
"upload_time": "2025-07-25T17:46:53",
"upload_time_iso_8601": "2025-07-25T17:46:53.195277Z",
"url": "https://files.pythonhosted.org/packages/89/f0/4f57b7349943f82d2b2fec569bafefe537ac40304eba1df1d27a46f20cff/pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e6fb238ca9473d0ff51c4a1ad85484c7b0da2a9693c1a58698d189a62472a0fc",
"md5": "a77442e8f37c5fb3fd5a79441ab29f4b",
"sha256": "bcb43178340fb4d537edd02912cd50c2a9755afe82e3a86387a0ffe30cc665c0"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a77442e8f37c5fb3fd5a79441ab29f4b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2193908,
"upload_time": "2025-07-25T17:46:54",
"upload_time_iso_8601": "2025-07-25T17:46:54.694433Z",
"url": "https://files.pythonhosted.org/packages/e6/fb/238ca9473d0ff51c4a1ad85484c7b0da2a9693c1a58698d189a62472a0fc/pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2d009072c73c6b665adc5ef4e389c54377da643e81c8c58645e7b6a105cff5c7",
"md5": "ea9994e824922a04eeb8f2892c138826",
"sha256": "5257b3e86861a5b8ead6a4db56927cd393bfb1f9e4c9b5b6e2548dca63e444bb"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ea9994e824922a04eeb8f2892c138826",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2304429,
"upload_time": "2025-07-25T17:46:56",
"upload_time_iso_8601": "2025-07-25T17:46:56.482680Z",
"url": "https://files.pythonhosted.org/packages/2d/00/9072c73c6b665adc5ef4e389c54377da643e81c8c58645e7b6a105cff5c7/pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "561ca8d2a641568f8b748e59f9bb4ed6fb1f244a32b50bca39a7349bbfaf056d",
"md5": "36ef570d0f2f682430b4a0fab32bdb63",
"sha256": "0550dc89003fa839d51c1082fe47d29f4deafde5fbb173560cd2544703e28655"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "36ef570d0f2f682430b4a0fab32bdb63",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2041657,
"upload_time": "2025-07-25T17:46:57",
"upload_time_iso_8601": "2025-07-25T17:46:57.987298Z",
"url": "https://files.pythonhosted.org/packages/56/1c/a8d2a641568f8b748e59f9bb4ed6fb1f244a32b50bca39a7349bbfaf056d/pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa346ba23da11bf01f48a4fe82f7ea2f32d8da16943c7dbb190201f1f8e325a7",
"md5": "3ea8100bb745a9ce8a31ded78617d75d",
"sha256": "fac55482f9734e078db71d572d1d28aebefa20f21ce779ff09b2c1bc6e0f259b"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "3ea8100bb745a9ce8a31ded78617d75d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2169264,
"upload_time": "2025-07-25T17:46:59",
"upload_time_iso_8601": "2025-07-25T17:46:59.473028Z",
"url": "https://files.pythonhosted.org/packages/aa/34/6ba23da11bf01f48a4fe82f7ea2f32d8da16943c7dbb190201f1f8e325a7/pydantic_core-2.37.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "05ff2897fd431a0dd62c31ea8cd41f7443354b4d274274c908cff14d693c6807",
"md5": "7ed6d0b40c850c252ef833402759cd00",
"sha256": "c38db5ad6e890c5ff4e20292182bdfe25619d38cb1dbae38618300015e113dfd"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "7ed6d0b40c850c252ef833402759cd00",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2117050,
"upload_time": "2025-07-25T17:47:05",
"upload_time_iso_8601": "2025-07-25T17:47:05.530568Z",
"url": "https://files.pythonhosted.org/packages/05/ff/2897fd431a0dd62c31ea8cd41f7443354b4d274274c908cff14d693c6807/pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "17ed8ba85d236a5532b1a7c647a11b3a41b7d9bc5ab60b49858b2b44f54684fb",
"md5": "0b4cb59032c5641f6242baad05ad8dca",
"sha256": "6a283547f83527f7292e58ea2f4aea7e77865e862252a5092b69382be56808c5"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "0b4cb59032c5641f6242baad05ad8dca",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2306534,
"upload_time": "2025-07-25T17:47:07",
"upload_time_iso_8601": "2025-07-25T17:47:07.307031Z",
"url": "https://files.pythonhosted.org/packages/17/ed/8ba85d236a5532b1a7c647a11b3a41b7d9bc5ab60b49858b2b44f54684fb/pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4e57bcbcec818e4956d911e8b876c9588eee753347342838087c6e8381f0dd2b",
"md5": "8b3ab66535f5a6206839eba6b8ded1ba",
"sha256": "360207acc03bc299362aeda5151549ca5229d88f8ee7845d48ff385153ec6f1e"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "8b3ab66535f5a6206839eba6b8ded1ba",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2308369,
"upload_time": "2025-07-25T17:47:08",
"upload_time_iso_8601": "2025-07-25T17:47:08.819424Z",
"url": "https://files.pythonhosted.org/packages/4e/57/bcbcec818e4956d911e8b876c9588eee753347342838087c6e8381f0dd2b/pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf3824cb8929a0c4355d25e7841b22690547e2e9659ce949253741d0315c6e09",
"md5": "da968335779b1e46df3b8e74417a99fa",
"sha256": "ffaa208c8561650fc7e20e97407136a751aee2f90cc21f0fc63a459f27d25c89"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "da968335779b1e46df3b8e74417a99fa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1829499,
"upload_time": "2025-07-25T17:47:16",
"upload_time_iso_8601": "2025-07-25T17:47:16.153885Z",
"url": "https://files.pythonhosted.org/packages/bf/38/24cb8929a0c4355d25e7841b22690547e2e9659ce949253741d0315c6e09/pydantic_core-2.37.1-cp313-cp313t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa6263e5466cf42c46dcf37184b38f7d60c2a665f0dffe59461c0b86b98fec6c",
"md5": "18295cf1d46bc7c79a9979ebdbeea358",
"sha256": "2435e49a7f966681a4b365e4fe25f1a6b5736c3f611dde3d7f8d97c607121554"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "18295cf1d46bc7c79a9979ebdbeea358",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2007761,
"upload_time": "2025-07-25T17:47:17",
"upload_time_iso_8601": "2025-07-25T17:47:17.752433Z",
"url": "https://files.pythonhosted.org/packages/fa/62/63e5466cf42c46dcf37184b38f7d60c2a665f0dffe59461c0b86b98fec6c/pydantic_core-2.37.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0348bfed40a54d99067c78d869b6db2c9259e3a45a02ae84d3c47c74d3f1ab1a",
"md5": "768d11d80325d2acfbb452083c808100",
"sha256": "0ae1154dafb5f9c34be12ddffa7a6ed3b6a47d65687f78553531cf8b2067c7c0"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "768d11d80325d2acfbb452083c808100",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1959780,
"upload_time": "2025-07-25T17:47:19",
"upload_time_iso_8601": "2025-07-25T17:47:19.385149Z",
"url": "https://files.pythonhosted.org/packages/03/48/bfed40a54d99067c78d869b6db2c9259e3a45a02ae84d3c47c74d3f1ab1a/pydantic_core-2.37.1-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "95589ae4a92b54fa7b5bd9e5b88ffc095e15603feddddf128d9811926875655f",
"md5": "a8c2a9d5330310d48180f5bbb67bf8e8",
"sha256": "66cb76593684854bd1ffcf11e8854d60ca6c8056670c1147f5ce124e056d2adc"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "a8c2a9d5330310d48180f5bbb67bf8e8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1944156,
"upload_time": "2025-07-25T17:47:10",
"upload_time_iso_8601": "2025-07-25T17:47:10.340506Z",
"url": "https://files.pythonhosted.org/packages/95/58/9ae4a92b54fa7b5bd9e5b88ffc095e15603feddddf128d9811926875655f/pydantic_core-2.37.1-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "47f7494c44ac5c9caf78ffc99848d6da975fc3e85d9600a405679428e4d4890f",
"md5": "4e1b439bd64724fa170a7b1374528402",
"sha256": "d36ef815f30d8ed03fb1d2a59b7ef71c09afb823cd654f9fb828f07820eff466"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "4e1b439bd64724fa170a7b1374528402",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2002077,
"upload_time": "2025-07-25T17:47:12",
"upload_time_iso_8601": "2025-07-25T17:47:12.705737Z",
"url": "https://files.pythonhosted.org/packages/47/f7/494c44ac5c9caf78ffc99848d6da975fc3e85d9600a405679428e4d4890f/pydantic_core-2.37.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "94ba5769a95a516326a999357942541e0617c2d0ba6864759b3583802d5577d3",
"md5": "956ae93554136f9e2c6aba5e720a14a0",
"sha256": "bc0adc9a1df7b07c7e6dfecf8ddb60033ceb41c747e7233d8c24c1aca7269edc"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "956ae93554136f9e2c6aba5e720a14a0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1952155,
"upload_time": "2025-07-25T17:47:14",
"upload_time_iso_8601": "2025-07-25T17:47:14.244171Z",
"url": "https://files.pythonhosted.org/packages/94/ba/5769a95a516326a999357942541e0617c2d0ba6864759b3583802d5577d3/pydantic_core-2.37.1-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca2726fadb84d3420a4372352126453060c1d6f42a6276c92bd66bb7fa867f38",
"md5": "93e08c3d0808fc8ae909168098a32031",
"sha256": "a5234d54b4d3058fd646dfe4f2d562e04980f9b09ee495dadc42f427aef6c13a"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "93e08c3d0808fc8ae909168098a32031",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2093534,
"upload_time": "2025-07-25T17:47:21",
"upload_time_iso_8601": "2025-07-25T17:47:21.000176Z",
"url": "https://files.pythonhosted.org/packages/ca/27/26fadb84d3420a4372352126453060c1d6f42a6276c92bd66bb7fa867f38/pydantic_core-2.37.1-cp314-cp314-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b0d5d5f2a14f0af67d6183ebf42f3c6ad830c37e37ed0d715ef943e39caca40",
"md5": "1d9956416586506d91110e8091816c2a",
"sha256": "d116d2d79ab5602fc11f86001e65ab130be492e798962d4679eb6c9f3a03367c"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1d9956416586506d91110e8091816c2a",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1870259,
"upload_time": "2025-07-25T17:47:22",
"upload_time_iso_8601": "2025-07-25T17:47:22.670059Z",
"url": "https://files.pythonhosted.org/packages/6b/0d/5d5f2a14f0af67d6183ebf42f3c6ad830c37e37ed0d715ef943e39caca40/pydantic_core-2.37.1-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c83bcce14f04e0c076955ffb388ade65dd197da94e157855dabbbef6b337d953",
"md5": "7c1931511ed3bda718831df1c1bb46c0",
"sha256": "c8f1ad309ea75db5a171feb402b0aa41d4b77838cbfbeacaf89a5fe3e19453d8"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7c1931511ed3bda718831df1c1bb46c0",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1938921,
"upload_time": "2025-07-25T17:47:24",
"upload_time_iso_8601": "2025-07-25T17:47:24.593217Z",
"url": "https://files.pythonhosted.org/packages/c8/3b/cce14f04e0c076955ffb388ade65dd197da94e157855dabbbef6b337d953/pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7604c59a4bdea887a70fd281e9ef001cb22306828382711df198f7fc75436983",
"md5": "f81c685752081869685d712c24a26591",
"sha256": "c6ec9dc22a601a6557463def36b99e64f246cf1d5e4dc8bd60f5c04165e6e9ad"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f81c685752081869685d712c24a26591",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2033244,
"upload_time": "2025-07-25T17:47:28",
"upload_time_iso_8601": "2025-07-25T17:47:28.316769Z",
"url": "https://files.pythonhosted.org/packages/76/04/c59a4bdea887a70fd281e9ef001cb22306828382711df198f7fc75436983/pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53565f9f61005277a1a9dadc7418ea3c91516841560a0dea059802dc39c6acc7",
"md5": "4c7eb6a584e12e703d2a521523fb7142",
"sha256": "35d66c92d5889a30f185e576dd5f5e1484570db2b181e8cc4c726aef37f2e973"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4c7eb6a584e12e703d2a521523fb7142",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2195743,
"upload_time": "2025-07-25T17:47:30",
"upload_time_iso_8601": "2025-07-25T17:47:30.028361Z",
"url": "https://files.pythonhosted.org/packages/53/56/5f9f61005277a1a9dadc7418ea3c91516841560a0dea059802dc39c6acc7/pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8cbbe568f873482693943946c50d07078a359bd70e7b60b95bdd69ac73ac3a52",
"md5": "8fe7db0c9e5378c9d22cecbf698df337",
"sha256": "28232d22a3c6a7535569211851ae8adad7b4b40fc46988b6e8e1c54c2371e3dd"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8fe7db0c9e5378c9d22cecbf698df337",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2307814,
"upload_time": "2025-07-25T17:47:31",
"upload_time_iso_8601": "2025-07-25T17:47:31.709228Z",
"url": "https://files.pythonhosted.org/packages/8c/bb/e568f873482693943946c50d07078a359bd70e7b60b95bdd69ac73ac3a52/pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f776449be1c178f57ba0145c6f10701a2eaee212d0616c253e9694b4e62426b",
"md5": "aed325b4586867ec8e3e5deb4a25ddf6",
"sha256": "1f6edca36f31e449f9922202a124672d9a3a399417968a43ae1318d6dc082c9e"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "aed325b4586867ec8e3e5deb4a25ddf6",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2036143,
"upload_time": "2025-07-25T17:47:33",
"upload_time_iso_8601": "2025-07-25T17:47:33.368708Z",
"url": "https://files.pythonhosted.org/packages/7f/77/6449be1c178f57ba0145c6f10701a2eaee212d0616c253e9694b4e62426b/pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f4d3af8fda007db869027441d9f83f9b6d147cc5f32a1b76b47b98fbc6eeff14",
"md5": "d111a5a09e5f828a3e4dc1c4a6cfec55",
"sha256": "af56e4683b50f42b74345a1b2234a7fd583216eed0daa6764b11d177a01af339"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "d111a5a09e5f828a3e4dc1c4a6cfec55",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2172676,
"upload_time": "2025-07-25T17:47:35",
"upload_time_iso_8601": "2025-07-25T17:47:35.144338Z",
"url": "https://files.pythonhosted.org/packages/f4/d3/af8fda007db869027441d9f83f9b6d147cc5f32a1b76b47b98fbc6eeff14/pydantic_core-2.37.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c2cb2b8d0d15a4e8d621b09cb6c03f33bde82927e3c30b584718a6dbbab77b3",
"md5": "db232023c784e63a1dc26afe08c8ad2c",
"sha256": "632edd55779fd8347459c0a0d0b0a4e61ce016c107cbd3d393dddfc4c4b5166e"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "db232023c784e63a1dc26afe08c8ad2c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2115938,
"upload_time": "2025-07-25T17:47:37",
"upload_time_iso_8601": "2025-07-25T17:47:37.216198Z",
"url": "https://files.pythonhosted.org/packages/1c/2c/b2b8d0d15a4e8d621b09cb6c03f33bde82927e3c30b584718a6dbbab77b3/pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5d7f4ce99dba8bd374e2c0c3f12d51e116d61d3fcf7a5cf0afd5110a6a384d1a",
"md5": "bb2c78c27b15d623d5ac468684bc8053",
"sha256": "d0b4cd3bf336b21a4bc75cb65a6b00dfb357a68400b5df66ce4ad23b370724bb"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "bb2c78c27b15d623d5ac468684bc8053",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2307597,
"upload_time": "2025-07-25T17:47:39",
"upload_time_iso_8601": "2025-07-25T17:47:39.266267Z",
"url": "https://files.pythonhosted.org/packages/5d/7f/4ce99dba8bd374e2c0c3f12d51e116d61d3fcf7a5cf0afd5110a6a384d1a/pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27d37e0c80ca0a7556a2e2a7ecb12971518599e36707f551932996a9b18a5c0c",
"md5": "ad412c564cbd7b767f8c2643f315a865",
"sha256": "4950aef7300e5340b9a89381ec10f38a10d6f505a4edda34d49cadda75936c0d"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ad412c564cbd7b767f8c2643f315a865",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2308505,
"upload_time": "2025-07-25T17:47:41",
"upload_time_iso_8601": "2025-07-25T17:47:41.308934Z",
"url": "https://files.pythonhosted.org/packages/27/d3/7e0c80ca0a7556a2e2a7ecb12971518599e36707f551932996a9b18a5c0c/pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a0059a0cbaf9f63656c2cfc4dc30833207d2f2327df23f9335a2d7e7987b80f8",
"md5": "e512c2a1c2469befa12a18799873936d",
"sha256": "d2387d5e24bf7a74fa4088c7cb6020f8ff206e101f68ba273d9495476d2510dc"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e512c2a1c2469befa12a18799873936d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1830478,
"upload_time": "2025-07-25T17:47:48",
"upload_time_iso_8601": "2025-07-25T17:47:48.702342Z",
"url": "https://files.pythonhosted.org/packages/a0/05/9a0cbaf9f63656c2cfc4dc30833207d2f2327df23f9335a2d7e7987b80f8/pydantic_core-2.37.1-cp314-cp314t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "705d91f5f90e101cbecade2cdb773baf41d2d8f4926ef1fdce2e0fd040107aba",
"md5": "571d6bed2c44a18222b62345ad9ab6a7",
"sha256": "785e320e0dafc2154bedc1a4b2457038a78df29641b953bcc69078b57dd81e3c"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "571d6bed2c44a18222b62345ad9ab6a7",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 2008290,
"upload_time": "2025-07-25T17:47:50",
"upload_time_iso_8601": "2025-07-25T17:47:50.746354Z",
"url": "https://files.pythonhosted.org/packages/70/5d/91f5f90e101cbecade2cdb773baf41d2d8f4926ef1fdce2e0fd040107aba/pydantic_core-2.37.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c201a07eddff02a6b1a132ffea4039c50ad157d465836e7387dd38f811849193",
"md5": "f52c6e1880750b9ab105f564fa52ac3e",
"sha256": "6340b3ac81e4b7df83211951ebcd6995582bcf59f8050b3028de2f94d0f02892"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314t-win_amd64.whl",
"has_sig": false,
"md5_digest": "f52c6e1880750b9ab105f564fa52ac3e",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1960960,
"upload_time": "2025-07-25T17:47:52",
"upload_time_iso_8601": "2025-07-25T17:47:52.484067Z",
"url": "https://files.pythonhosted.org/packages/c2/01/a07eddff02a6b1a132ffea4039c50ad157d465836e7387dd38f811849193/pydantic_core-2.37.1-cp314-cp314t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b892e5fac01e3b8ebff374a775688f1c5d35faddc858f08cb35418b07b1f81a",
"md5": "05bdafe69e80d201395db6906794517e",
"sha256": "a161a9e83fb3a05f920544351c0d83ce87dfe430b7a4a6682a03f85cbc3715d2"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-win32.whl",
"has_sig": false,
"md5_digest": "05bdafe69e80d201395db6906794517e",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1947983,
"upload_time": "2025-07-25T17:47:42",
"upload_time_iso_8601": "2025-07-25T17:47:42.988109Z",
"url": "https://files.pythonhosted.org/packages/5b/89/2e5fac01e3b8ebff374a775688f1c5d35faddc858f08cb35418b07b1f81a/pydantic_core-2.37.1-cp314-cp314-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa4c4c56f6cf73e87ca29773e929720edd3155254888b4959767892808a0b74c",
"md5": "c2bc33f343a773700b614bf2669b9b36",
"sha256": "ad1a303a11a91b5170f3c512cb9a4d56687b00900f139c6ccd6fe54963f402ee"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "c2bc33f343a773700b614bf2669b9b36",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1995862,
"upload_time": "2025-07-25T17:47:44",
"upload_time_iso_8601": "2025-07-25T17:47:44.764556Z",
"url": "https://files.pythonhosted.org/packages/aa/4c/4c56f6cf73e87ca29773e929720edd3155254888b4959767892808a0b74c/pydantic_core-2.37.1-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9746b59ca6ec9646f5659fbc77e036de4bcc01d90ccf02f3f20ba09913cc7f0f",
"md5": "84f3bda129117c49f046eb7dbec36d6c",
"sha256": "bf29560cbe7d7bd3d890c3aa4819162f9ad2728e6f21dddcabb86d700a50441f"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp314-cp314-win_arm64.whl",
"has_sig": false,
"md5_digest": "84f3bda129117c49f046eb7dbec36d6c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 1952161,
"upload_time": "2025-07-25T17:47:46",
"upload_time_iso_8601": "2025-07-25T17:47:46.868676Z",
"url": "https://files.pythonhosted.org/packages/97/46/b59ca6ec9646f5659fbc77e036de4bcc01d90ccf02f3f20ba09913cc7f0f/pydantic_core-2.37.1-cp314-cp314-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c2e97a3cb5bd08f67bcad682f1d93bb8821e29dfeb855918e0436b1dc254695b",
"md5": "5489a623d76ef685587efe95a17e3007",
"sha256": "4528cfeb4b9a063a7032e52859db8ce2ce17f40848f9ed05bce616374ff5910a"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "5489a623d76ef685587efe95a17e3007",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2115827,
"upload_time": "2025-07-25T17:47:54",
"upload_time_iso_8601": "2025-07-25T17:47:54.290120Z",
"url": "https://files.pythonhosted.org/packages/c2/e9/7a3cb5bd08f67bcad682f1d93bb8821e29dfeb855918e0436b1dc254695b/pydantic_core-2.37.1-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19933c6f59b18d799eb9b473a8555767528494f323d2dd26f3ff11090edca676",
"md5": "66b5d843e2d2d017b7dfa8560409d0be",
"sha256": "a6f30f61e1ce1ad79575124a1e0c172e3c69a673e0a3271deb1d803dcc9ac2d3"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "66b5d843e2d2d017b7dfa8560409d0be",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1932806,
"upload_time": "2025-07-25T17:47:56",
"upload_time_iso_8601": "2025-07-25T17:47:56.017570Z",
"url": "https://files.pythonhosted.org/packages/19/93/3c6f59b18d799eb9b473a8555767528494f323d2dd26f3ff11090edca676/pydantic_core-2.37.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1fa47be68c31f3fab8b7b8140c0003e3d58aa436dcb4af4b39a1cc19870e6d51",
"md5": "f2ff9e212166852ca949fca77f3d504d",
"sha256": "f066b9ff48c0759e69bcf910b3cc8f8a0b7a9cbea5b4a128f17c762b2dee22ea"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f2ff9e212166852ca949fca77f3d504d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1965202,
"upload_time": "2025-07-25T17:47:57",
"upload_time_iso_8601": "2025-07-25T17:47:57.778621Z",
"url": "https://files.pythonhosted.org/packages/1f/a4/7be68c31f3fab8b7b8140c0003e3d58aa436dcb4af4b39a1cc19870e6d51/pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ffc855eff01e707ee68ab190df8d95066dd09e0971e4c5946da9aa41d8e9066",
"md5": "60ffbc34d62ecf1a345afc897f634714",
"sha256": "18b00b47d901fcd9e0e24429d23e7e9906db389b1603faf45cbf620e929b0ad2"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "60ffbc34d62ecf1a345afc897f634714",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2040789,
"upload_time": "2025-07-25T17:47:59",
"upload_time_iso_8601": "2025-07-25T17:47:59.561233Z",
"url": "https://files.pythonhosted.org/packages/7f/fc/855eff01e707ee68ab190df8d95066dd09e0971e4c5946da9aa41d8e9066/pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0474cded02237bf341ddb352ecafbd45841f5f13e3635ce13208dc551d7104f1",
"md5": "ac3c9c51dacf700b361e4080babf80fc",
"sha256": "0a21408bdc87b2180fe3179914385153c7601241adada36c9ee88722b842e3bf"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ac3c9c51dacf700b361e4080babf80fc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2227604,
"upload_time": "2025-07-25T17:48:01",
"upload_time_iso_8601": "2025-07-25T17:48:01.301657Z",
"url": "https://files.pythonhosted.org/packages/04/74/cded02237bf341ddb352ecafbd45841f5f13e3635ce13208dc551d7104f1/pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3267e2bb0180a9b6b6c7be976669400943ba9512b37e4c51cb29ddb3827cae23",
"md5": "40b1126e8b0d8fa1a5640f7020125b3c",
"sha256": "f771c1a3d1cbca28ef4ac96675ba71401843e35a5065d21d517e24ced5998c9f"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "40b1126e8b0d8fa1a5640f7020125b3c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2311669,
"upload_time": "2025-07-25T17:48:03",
"upload_time_iso_8601": "2025-07-25T17:48:03.474619Z",
"url": "https://files.pythonhosted.org/packages/32/67/e2bb0180a9b6b6c7be976669400943ba9512b37e4c51cb29ddb3827cae23/pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a76a0a87b26883afac7ba543b2296d960694dcd44aa9a58dcf0c4e6fb245cb80",
"md5": "fcafbc34086d2a02f1aaf6dc7c97ad8b",
"sha256": "fd3499cb3b4952a4685e74ec8e3ae349f4ee6152d45088565fcd15569305857b"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "fcafbc34086d2a02f1aaf6dc7c97ad8b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2037201,
"upload_time": "2025-07-25T17:48:06",
"upload_time_iso_8601": "2025-07-25T17:48:06.228719Z",
"url": "https://files.pythonhosted.org/packages/a7/6a/0a87b26883afac7ba543b2296d960694dcd44aa9a58dcf0c4e6fb245cb80/pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae3cccad4ee315bc90547eca210981d322d0a7378e9c7d932b3b706dfe2ab8c7",
"md5": "79f8111fcc3b1f8b333f23e7e32e08fe",
"sha256": "90101f89fe365e06042cb2db7ac47b529bc983678505d9bbeae010f213cc00cf"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "79f8111fcc3b1f8b333f23e7e32e08fe",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2180060,
"upload_time": "2025-07-25T17:48:08",
"upload_time_iso_8601": "2025-07-25T17:48:08.355752Z",
"url": "https://files.pythonhosted.org/packages/ae/3c/ccad4ee315bc90547eca210981d322d0a7378e9c7d932b3b706dfe2ab8c7/pydantic_core-2.37.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5cd78a89466c2f05a0b3467dedc62f5974d28114e00b20b7443ce1c33dba75f3",
"md5": "15db09e030f3f6b5a498f9cc3a1bc873",
"sha256": "269d91967aab94f0086f8b5bb9505b41ab752a1fd8d1cd644bfc09faa78c0822"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "15db09e030f3f6b5a498f9cc3a1bc873",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2141503,
"upload_time": "2025-07-25T17:48:10",
"upload_time_iso_8601": "2025-07-25T17:48:10.127179Z",
"url": "https://files.pythonhosted.org/packages/5c/d7/8a89466c2f05a0b3467dedc62f5974d28114e00b20b7443ce1c33dba75f3/pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3208feeebae0cd8d04060a0e68b5297269439bdc27714f61cc9da45548bc39d",
"md5": "eb4a858d73417651c46d72c1c8db4fe5",
"sha256": "f81f44447d73a836a97448e05141012388e35d17e73778c924b82df98c5d0638"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "eb4a858d73417651c46d72c1c8db4fe5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2309189,
"upload_time": "2025-07-25T17:48:12",
"upload_time_iso_8601": "2025-07-25T17:48:12.005584Z",
"url": "https://files.pythonhosted.org/packages/a3/20/8feeebae0cd8d04060a0e68b5297269439bdc27714f61cc9da45548bc39d/pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c2ee9aaff3043e57be834b4da02b792bd0619b1613654327b5a3f7de1c7b8e83",
"md5": "01bc433f2a493cfa08268b24eab77372",
"sha256": "778b4ed067ad9ec39c3f656d085f3d09791dc3d94474f3183037ed6e833e0f4e"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "01bc433f2a493cfa08268b24eab77372",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2321274,
"upload_time": "2025-07-25T17:48:13",
"upload_time_iso_8601": "2025-07-25T17:48:13.842541Z",
"url": "https://files.pythonhosted.org/packages/c2/ee/9aaff3043e57be834b4da02b792bd0619b1613654327b5a3f7de1c7b8e83/pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0207430a2c6971055bde92bcc87b255c95308035d17db56799c8c4d53556fe23",
"md5": "b5187df7a869b1e4bdf35e0c1b0cce2b",
"sha256": "f091f5bd2dc8ca573fb8332cf1b9217ea45b0a06030d15f497027e3386c1ce5a"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "b5187df7a869b1e4bdf35e0c1b0cce2b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1964973,
"upload_time": "2025-07-25T17:48:15",
"upload_time_iso_8601": "2025-07-25T17:48:15.853580Z",
"url": "https://files.pythonhosted.org/packages/02/07/430a2c6971055bde92bcc87b255c95308035d17db56799c8c4d53556fe23/pydantic_core-2.37.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1d08b1cc742faff1c796144223be09babf6d20effbc5121b819ef5c3b2df00b2",
"md5": "71d0d9650c343a5cf695e2f8f73efed9",
"sha256": "a73f33fbf0c5fba03f3a2fe217d30698f0a8f418920d80544f3314f8fd87d540"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "71d0d9650c343a5cf695e2f8f73efed9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1995517,
"upload_time": "2025-07-25T17:48:17",
"upload_time_iso_8601": "2025-07-25T17:48:17.985637Z",
"url": "https://files.pythonhosted.org/packages/1d/08/b1cc742faff1c796144223be09babf6d20effbc5121b819ef5c3b2df00b2/pydantic_core-2.37.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5dbb9c4736af59d3c27bc82d6f2f53c3f0fdaaa36b0826bfa74a640223f89b74",
"md5": "8ec2d9660694a6f28da7ab3654579322",
"sha256": "ba64a24fbf30fe0df40ff73bb8458c3d7d78e1f36e96f6d497f79293f788fc2b"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "8ec2d9660694a6f28da7ab3654579322",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2115800,
"upload_time": "2025-07-25T17:48:20",
"upload_time_iso_8601": "2025-07-25T17:48:20.162752Z",
"url": "https://files.pythonhosted.org/packages/5d/bb/9c4736af59d3c27bc82d6f2f53c3f0fdaaa36b0826bfa74a640223f89b74/pydantic_core-2.37.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1869dac1a23de7cd21b710c025522fea5c38fb6112551f17a962a88686cd45d2",
"md5": "85890598eae4456dc032e778c2c46d6a",
"sha256": "0b384240ea7b4b555343a603c12ddefa3a200a066fedb199ce4582426b47f027"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "85890598eae4456dc032e778c2c46d6a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1931380,
"upload_time": "2025-07-25T17:48:21",
"upload_time_iso_8601": "2025-07-25T17:48:21.993173Z",
"url": "https://files.pythonhosted.org/packages/18/69/dac1a23de7cd21b710c025522fea5c38fb6112551f17a962a88686cd45d2/pydantic_core-2.37.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ed207c71aa2bce21ab6e7fbac3ea7d8f5e63bf80c656b862a7ec6a6e460916d9",
"md5": "39661ad8b960b7edcc57116f3fac6e08",
"sha256": "4ef947f0bdafdbadf0a3623d6f9c2069562b0e2e34a0771fd6cb21ce171b0cdf"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "39661ad8b960b7edcc57116f3fac6e08",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1966626,
"upload_time": "2025-07-25T17:48:23",
"upload_time_iso_8601": "2025-07-25T17:48:23.943433Z",
"url": "https://files.pythonhosted.org/packages/ed/20/7c71aa2bce21ab6e7fbac3ea7d8f5e63bf80c656b862a7ec6a6e460916d9/pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f6c03324286f5a54f96076c63987712d7204c3afa979c59471695041deca5af",
"md5": "b9445ec394af38b465e89b554bbb2664",
"sha256": "914db9fe59c79f2bbade30ae0ce8a57501e9f7a5750e434cf98aad7ae65db6de"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b9445ec394af38b465e89b554bbb2664",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2154427,
"upload_time": "2025-07-25T17:48:25",
"upload_time_iso_8601": "2025-07-25T17:48:25.844055Z",
"url": "https://files.pythonhosted.org/packages/8f/6c/03324286f5a54f96076c63987712d7204c3afa979c59471695041deca5af/pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c3e2769b1655e89be3398dd30b4436f837be5a5c77ae850d4226fe6f61ec7f45",
"md5": "c0ff72929a7027fce9917049b2c49da0",
"sha256": "d39103ae1ff5325b03d4d0da74c8837c32b3949eee586ebec1d72e3dabc4ff02"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c0ff72929a7027fce9917049b2c49da0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2175456,
"upload_time": "2025-07-25T17:48:28",
"upload_time_iso_8601": "2025-07-25T17:48:28.067579Z",
"url": "https://files.pythonhosted.org/packages/c3/e2/769b1655e89be3398dd30b4436f837be5a5c77ae850d4226fe6f61ec7f45/pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b380377ef550d566d1f8cbbab31d8221b3595224e8e3a1d0c984ff84e677a529",
"md5": "a10827d849f60afda84f658b3f196196",
"sha256": "7a0b787ef20766a7f36086b16356ae8203db17b4ec969496aff5ec52366db3e8"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "a10827d849f60afda84f658b3f196196",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2142694,
"upload_time": "2025-07-25T17:48:29",
"upload_time_iso_8601": "2025-07-25T17:48:29.931748Z",
"url": "https://files.pythonhosted.org/packages/b3/80/377ef550d566d1f8cbbab31d8221b3595224e8e3a1d0c984ff84e677a529/pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5d615e864827a578b6947cc2a8ea046eb38c91d5246890a76673305cdd98387",
"md5": "4223b51c923b7e2e97f8b05eec79b862",
"sha256": "cb4dcae64a2083e0ad5569e9c42f37be87a505981e278af1d8446f2b4fca8cf1"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "4223b51c923b7e2e97f8b05eec79b862",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2309488,
"upload_time": "2025-07-25T17:48:31",
"upload_time_iso_8601": "2025-07-25T17:48:31.841774Z",
"url": "https://files.pythonhosted.org/packages/e5/d6/15e864827a578b6947cc2a8ea046eb38c91d5246890a76673305cdd98387/pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "69fa94a837597a11504a605bf2980e584b3552df12f3a3c8fbd77d92620a3404",
"md5": "8c362bf585f4fe76f9b05a54011b40dd",
"sha256": "d69c7a1f5f8f3f79a99c227a2447a7438b7186a73d013839501366cacde96a4c"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "8c362bf585f4fe76f9b05a54011b40dd",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2322260,
"upload_time": "2025-07-25T17:48:33",
"upload_time_iso_8601": "2025-07-25T17:48:33.878617Z",
"url": "https://files.pythonhosted.org/packages/69/fa/94a837597a11504a605bf2980e584b3552df12f3a3c8fbd77d92620a3404/pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c0fd3711faffaecba87180bc17fd9163efa25ce9967082672c7f6111203836d",
"md5": "31f4f4b29baea68fcddd7cc7af8f4651",
"sha256": "d04b2da15d305086eb4e1d585a3a2d707a03bbbbc1b2a70384dd804b92148ef1"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "31f4f4b29baea68fcddd7cc7af8f4651",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2145165,
"upload_time": "2025-07-25T17:48:36",
"upload_time_iso_8601": "2025-07-25T17:48:36.037639Z",
"url": "https://files.pythonhosted.org/packages/6c/0f/d3711faffaecba87180bc17fd9163efa25ce9967082672c7f6111203836d/pydantic_core-2.37.1-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "196c54563ec6806829640b5a4eb75be8463a42053429ac6c01b20cd965cfb84b",
"md5": "9cca740978de34bf5e891ec424c250c3",
"sha256": "a63a997220ac2494dcfaf7c78f54abb8ea44e2e6d6488b8da0696549e869c402"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "9cca740978de34bf5e891ec424c250c3",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2116686,
"upload_time": "2025-07-25T17:48:38",
"upload_time_iso_8601": "2025-07-25T17:48:38.366811Z",
"url": "https://files.pythonhosted.org/packages/19/6c/54563ec6806829640b5a4eb75be8463a42053429ac6c01b20cd965cfb84b/pydantic_core-2.37.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6a412d8711e5e4ce53e52447b94714b752846f608a0c8a70ca8675bc0d53460b",
"md5": "446fe490d953e75386e7a803c05ccfaf",
"sha256": "a0b04a94bc77691954e66769af7a34e055d2f3cab9bc21bfbaa87cd9501fceb5"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "446fe490d953e75386e7a803c05ccfaf",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1931820,
"upload_time": "2025-07-25T17:48:40",
"upload_time_iso_8601": "2025-07-25T17:48:40.355595Z",
"url": "https://files.pythonhosted.org/packages/6a/41/2d8711e5e4ce53e52447b94714b752846f608a0c8a70ca8675bc0d53460b/pydantic_core-2.37.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "937ab7b9304b9d468620e09dfcb753b3a2456b8127a3f662e519bbd69ef89863",
"md5": "18716a55c9f23adf2b57f01e8b27d665",
"sha256": "91257213596e5d8181a9793e1d8dce864c81e4f7f521ccd72c180ca3b2ee50a7"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "18716a55c9f23adf2b57f01e8b27d665",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1966632,
"upload_time": "2025-07-25T17:48:42",
"upload_time_iso_8601": "2025-07-25T17:48:42.417929Z",
"url": "https://files.pythonhosted.org/packages/93/7a/b7b9304b9d468620e09dfcb753b3a2456b8127a3f662e519bbd69ef89863/pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "499ada23c2fdab3492d1357c976d25bb8d36572945e160bf93c84143f6015391",
"md5": "4d2df789cd3f7c514db2d80965ce397a",
"sha256": "e82a3e9d5009e3201d8fa1eab1a5832e541461305eb9830fa9fbcb86c7e5f4b6"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4d2df789cd3f7c514db2d80965ce397a",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2153913,
"upload_time": "2025-07-25T17:48:44",
"upload_time_iso_8601": "2025-07-25T17:48:44.456120Z",
"url": "https://files.pythonhosted.org/packages/49/9a/da23c2fdab3492d1357c976d25bb8d36572945e160bf93c84143f6015391/pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a051f25b91e0f9bd5eab64752a3b7ec532e1b021d6fc91f62d8e644801717583",
"md5": "a8b6ce7cd7db2e9bf75e75a5474bf966",
"sha256": "1b49c9b499e555ff30c631f8d6329ca41782a97ddd5d0afe882a3fb4269ccfbb"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "a8b6ce7cd7db2e9bf75e75a5474bf966",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2176595,
"upload_time": "2025-07-25T17:48:46",
"upload_time_iso_8601": "2025-07-25T17:48:46.435899Z",
"url": "https://files.pythonhosted.org/packages/a0/51/f25b91e0f9bd5eab64752a3b7ec532e1b021d6fc91f62d8e644801717583/pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5d29be152e8da406ddc546054c1eb14e3e79c1244404fe47ee4c6cec4cf0af34",
"md5": "17fcb102d504d2871651a6e42fd91a49",
"sha256": "f24fd165de034d20d86d6845fd57a801e150564b1fba6a22a52f42a893201937"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "17fcb102d504d2871651a6e42fd91a49",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2142617,
"upload_time": "2025-07-25T17:48:48",
"upload_time_iso_8601": "2025-07-25T17:48:48.502796Z",
"url": "https://files.pythonhosted.org/packages/5d/29/be152e8da406ddc546054c1eb14e3e79c1244404fe47ee4c6cec4cf0af34/pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b804b5dbc9d2c78edfb4b8171b07bf4b3996b915542f1e712b5c2b5d36a83ae9",
"md5": "700b9abfff40c1e81f37e734bf6b374e",
"sha256": "83b64e1c0f81d405e90efde6f3903d88e30e5d43eec6a15ae9c0801cd3fc8f30"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "700b9abfff40c1e81f37e734bf6b374e",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2310272,
"upload_time": "2025-07-25T17:48:50",
"upload_time_iso_8601": "2025-07-25T17:48:50.718957Z",
"url": "https://files.pythonhosted.org/packages/b8/04/b5dbc9d2c78edfb4b8171b07bf4b3996b915542f1e712b5c2b5d36a83ae9/pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42eec72ad1a15665d7a499d1912194a26e679c7c8a15299728d0e17e0fe37eb1",
"md5": "ecfc92e76efc289f82dfc8c827f782b2",
"sha256": "e027d879e141f262b8f74406549ef5a77fabe05112f289f84c53e7b0bdf70c0e"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ecfc92e76efc289f82dfc8c827f782b2",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2322088,
"upload_time": "2025-07-25T17:48:52",
"upload_time_iso_8601": "2025-07-25T17:48:52.729631Z",
"url": "https://files.pythonhosted.org/packages/42/ee/c72ad1a15665d7a499d1912194a26e679c7c8a15299728d0e17e0fe37eb1/pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "74e2a406a9c82540708110d6a2ca26b77427a8e4f290173b1852cf3a278bbb97",
"md5": "ceb00c9dc5d2d006b9db5b2c9632d685",
"sha256": "aa9105f2a8bcf0d60e20d02a94305dfb1a506b08bbd6bc63374caf381450af0e"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1-pp311-pypy311_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "ceb00c9dc5d2d006b9db5b2c9632d685",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 2144958,
"upload_time": "2025-07-25T17:48:54",
"upload_time_iso_8601": "2025-07-25T17:48:54.777848Z",
"url": "https://files.pythonhosted.org/packages/74/e2/a406a9c82540708110d6a2ca26b77427a8e4f290173b1852cf3a278bbb97/pydantic_core-2.37.1-pp311-pypy311_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e28389a5f16880bf4300a7749f3149c2bf16f59ac75e87705062820e6910ca0b",
"md5": "55f78d499e416f3c009d3566820b9e3d",
"sha256": "8520cbfabf8e7a303e3ffdd5ef70964a1520d46228f021934b3281ae98dbc46d"
},
"downloads": -1,
"filename": "pydantic_core-2.37.1.tar.gz",
"has_sig": false,
"md5_digest": "55f78d499e416f3c009d3566820b9e3d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 443893,
"upload_time": "2025-07-25T17:48:56",
"upload_time_iso_8601": "2025-07-25T17:48:56.793313Z",
"url": "https://files.pythonhosted.org/packages/e2/83/89a5f16880bf4300a7749f3149c2bf16f59ac75e87705062820e6910ca0b/pydantic_core-2.37.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-25 17:48:56",
"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"
}