# 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>",
"download_url": "https://files.pythonhosted.org/packages/79/f6/904edea98c98c09b8d618d619749af19a50ea5a71b9199ee2131a5a03dfb/pydantic_core-2.29.0.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.29.0",
"project_urls": {
"Funding": "https://github.com/sponsors/samuelcolvin",
"Homepage": "https://github.com/pydantic/pydantic-core",
"Source": "https://github.com/pydantic/pydantic-core"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "7e271e6beb77f3fb0c00a87a1c59a41ab1c986be582236248592c96b96c57701",
"md5": "c23e1818803cf7afaff605fff8fd9cf8",
"sha256": "747410cab5a3a8421f45879fe3ac38f650627b874debc1789b8df609a4c99d64"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "c23e1818803cf7afaff605fff8fd9cf8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2038245,
"upload_time": "2025-02-07T18:08:30",
"upload_time_iso_8601": "2025-02-07T18:08:30.642997Z",
"url": "https://files.pythonhosted.org/packages/7e/27/1e6beb77f3fb0c00a87a1c59a41ab1c986be582236248592c96b96c57701/pydantic_core-2.29.0-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2382d81ac9a227bcf5cd9a536d0613542f402d74b97014131ca50c64711e1acd",
"md5": "e50dddd6cd979b893c0a8ba38868283b",
"sha256": "0c06ce6eb6dfbe653425c6aee2c02d67a4eb18c31a3b1022748cfb33904bf6a1"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e50dddd6cd979b893c0a8ba38868283b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1885138,
"upload_time": "2025-02-07T18:08:33",
"upload_time_iso_8601": "2025-02-07T18:08:33.041760Z",
"url": "https://files.pythonhosted.org/packages/23/82/d81ac9a227bcf5cd9a536d0613542f402d74b97014131ca50c64711e1acd/pydantic_core-2.29.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8799c3af71a0cddd2a550d5d56c1f9df34b74d25ef62c0240f889cdc37782489",
"md5": "0638429371b1ad33bd43c9a82e26e208",
"sha256": "a4ab8d727db1e346fc3ea24d25f715b36634f3f817600bd99ad740ecdea75c49"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0638429371b1ad33bd43c9a82e26e208",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1910926,
"upload_time": "2025-02-07T18:08:34",
"upload_time_iso_8601": "2025-02-07T18:08:34.456109Z",
"url": "https://files.pythonhosted.org/packages/87/99/c3af71a0cddd2a550d5d56c1f9df34b74d25ef62c0240f889cdc37782489/pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4695ac712ed8a83f25822899f0a0df6cc7622106b8d8fda3086718bf0b9ebf80",
"md5": "464d35914ed5dbf4ef0b0aaccb731473",
"sha256": "d4e5f402328c3903b1e64a7a6bb17ac211b4ef1831cb691ebc983ba71ff3c4be"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "464d35914ed5dbf4ef0b0aaccb731473",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1997150,
"upload_time": "2025-02-07T18:08:39",
"upload_time_iso_8601": "2025-02-07T18:08:39.456320Z",
"url": "https://files.pythonhosted.org/packages/46/95/ac712ed8a83f25822899f0a0df6cc7622106b8d8fda3086718bf0b9ebf80/pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7a982946362dc53b3c2ba2f84e92bdb79a6c44201fafccfb42d05620837d44d",
"md5": "b23f26cb58a53bf49779922fc03568ca",
"sha256": "56f940cd3803999dc303d89f2a9502d0b3cf5322b9625e4c8ef1c221a816c885"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b23f26cb58a53bf49779922fc03568ca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2131731,
"upload_time": "2025-02-07T18:08:43",
"upload_time_iso_8601": "2025-02-07T18:08:43.050392Z",
"url": "https://files.pythonhosted.org/packages/e7/a9/82946362dc53b3c2ba2f84e92bdb79a6c44201fafccfb42d05620837d44d/pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "863344386a10c29463c96a077967efb4d94250f6e76d8cc29d5d1e69c256e705",
"md5": "a8bd3c737b4814a93ee88392bdfe448b",
"sha256": "489efc8c83198b5dd9ede0dec585da4ec8d548a82dae451e2e6076645fb71fee"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a8bd3c737b4814a93ee88392bdfe448b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2776741,
"upload_time": "2025-02-07T18:08:46",
"upload_time_iso_8601": "2025-02-07T18:08:46.180852Z",
"url": "https://files.pythonhosted.org/packages/86/33/44386a10c29463c96a077967efb4d94250f6e76d8cc29d5d1e69c256e705/pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7dbd0a27e050af68b9e3673449a626bbd24989d2edbb1a1b6db4774ce9a6fa77",
"md5": "96c0bec7489aceed821ae8100aeb271c",
"sha256": "061ee2c0c8a0a34f51fb5359dd57c27ecf9edaa8aca13a63d154d46bede4c91c"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "96c0bec7489aceed821ae8100aeb271c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2035785,
"upload_time": "2025-02-07T18:08:48",
"upload_time_iso_8601": "2025-02-07T18:08:48.638552Z",
"url": "https://files.pythonhosted.org/packages/7d/bd/0a27e050af68b9e3673449a626bbd24989d2edbb1a1b6db4774ce9a6fa77/pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e35bf6bde45af0bc03f1db8fe4682cfb7ea72d849c7fe8ece1439c86be71900",
"md5": "38374c493bc39257f6f08dee4d94eab9",
"sha256": "bf95c495629f76385e5c1c5bbf75e354c015be3c80069f3f6c1a38ac3e112128"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "38374c493bc39257f6f08dee4d94eab9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2126860,
"upload_time": "2025-02-07T18:08:50",
"upload_time_iso_8601": "2025-02-07T18:08:50.417314Z",
"url": "https://files.pythonhosted.org/packages/1e/35/bf6bde45af0bc03f1db8fe4682cfb7ea72d849c7fe8ece1439c86be71900/pydantic_core-2.29.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6ea1c394c6d2732899cf7c5cc5bcbfb0f4c5641a0efbb571f99c3e16cd0ae81",
"md5": "9a3448fbf793f0320e98baa071faf98c",
"sha256": "dc876229b523beb46883a7b58bdd6da19390a56417d84083254f90f56497ba74"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "9a3448fbf793f0320e98baa071faf98c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2072419,
"upload_time": "2025-02-07T18:08:52",
"upload_time_iso_8601": "2025-02-07T18:08:52.034445Z",
"url": "https://files.pythonhosted.org/packages/b6/ea/1c394c6d2732899cf7c5cc5bcbfb0f4c5641a0efbb571f99c3e16cd0ae81/pydantic_core-2.29.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2fc89e06625b3ef36b148bcad3d5e7e3445efdf16285fe9d43934063e2c2dd22",
"md5": "85a8f6f00ec370a516e0e85c16b554d0",
"sha256": "d2d05f785bf0906ec135d405b8a26c96a38098c0d942ac1698613da110548f8e"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "85a8f6f00ec370a516e0e85c16b554d0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2251157,
"upload_time": "2025-02-07T18:08:55",
"upload_time_iso_8601": "2025-02-07T18:08:55.844024Z",
"url": "https://files.pythonhosted.org/packages/2f/c8/9e06625b3ef36b148bcad3d5e7e3445efdf16285fe9d43934063e2c2dd22/pydantic_core-2.29.0-cp310-cp310-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7db3e9815f22c22d190fa74167b0eeb5af5c254dfbdcd5542906c4b280c6d547",
"md5": "b3ade7ee22a63599f2a78994ee430dfd",
"sha256": "3e3767663d0a51507b711acc56b6a99254c48d19b889e4a12845f6df70666778"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b3ade7ee22a63599f2a78994ee430dfd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2235206,
"upload_time": "2025-02-07T18:08:57",
"upload_time_iso_8601": "2025-02-07T18:08:57.305263Z",
"url": "https://files.pythonhosted.org/packages/7d/b3/e9815f22c22d190fa74167b0eeb5af5c254dfbdcd5542906c4b280c6d547/pydantic_core-2.29.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af33208ced529108cbd585dc65553cd00359a6740ff871bff9973331ae75c210",
"md5": "c7b6a2ac6cc29ca74eb7a782e5cff660",
"sha256": "07301b455b78316c85e332d1ac5219ca315239f920c261ebfe106809eba3b01b"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "c7b6a2ac6cc29ca74eb7a782e5cff660",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1927276,
"upload_time": "2025-02-07T18:09:01",
"upload_time_iso_8601": "2025-02-07T18:09:01.139089Z",
"url": "https://files.pythonhosted.org/packages/af/33/208ced529108cbd585dc65553cd00359a6740ff871bff9973331ae75c210/pydantic_core-2.29.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e95ba277da9729920d3e169966935d6ee67a276c796af96feae01c74146a10c",
"md5": "153b7e20dbe620e79a74c1a51304379a",
"sha256": "3493dab9cf3ed2b4bf3b3664fd4f4c3099ea270adcc45a1921513207eb557976"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "153b7e20dbe620e79a74c1a51304379a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1987638,
"upload_time": "2025-02-07T18:09:03",
"upload_time_iso_8601": "2025-02-07T18:09:03.094055Z",
"url": "https://files.pythonhosted.org/packages/8e/95/ba277da9729920d3e169966935d6ee67a276c796af96feae01c74146a10c/pydantic_core-2.29.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "25dda51066d138f742e2e28a0f306463eff2e2c7258e15f8f201005d75cc61d1",
"md5": "793a5f8f3793ce18ee644214cca91475",
"sha256": "69f8936f367e59aeeb4d0ae3f1cae564a7b9be8d04c88cc22101c57c9f25ab6c"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "793a5f8f3793ce18ee644214cca91475",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2040826,
"upload_time": "2025-02-07T18:09:04",
"upload_time_iso_8601": "2025-02-07T18:09:04.815519Z",
"url": "https://files.pythonhosted.org/packages/25/dd/a51066d138f742e2e28a0f306463eff2e2c7258e15f8f201005d75cc61d1/pydantic_core-2.29.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "188935543a77b34883107453657e9f43620cbe4f66a0995f723b101d05bbf1c4",
"md5": "e4c844b42eac739582b2a28368cd3d4a",
"sha256": "7a246d3980e6c08af0d618e19b91259e79d46a857b0cca82f10aea55f550b265"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e4c844b42eac739582b2a28368cd3d4a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1883327,
"upload_time": "2025-02-07T18:09:08",
"upload_time_iso_8601": "2025-02-07T18:09:08.110652Z",
"url": "https://files.pythonhosted.org/packages/18/89/35543a77b34883107453657e9f43620cbe4f66a0995f723b101d05bbf1c4/pydantic_core-2.29.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c27a8b63417e996d38e87248b0f1180b503ac3680074df012b1e35679d9f984b",
"md5": "701c48577e59e6d82a90fd291ef03611",
"sha256": "58c0393cf1ebdd6a300eef431bfc1192e8866b77d5f3c1b8f2979032ca2a5ad4"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "701c48577e59e6d82a90fd291ef03611",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1912271,
"upload_time": "2025-02-07T18:09:09",
"upload_time_iso_8601": "2025-02-07T18:09:09.580347Z",
"url": "https://files.pythonhosted.org/packages/c2/7a/8b63417e996d38e87248b0f1180b503ac3680074df012b1e35679d9f984b/pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "814e3dc1f66d4f24b63ffff28eedb9d81ba366fc06af61e64ee784d26296004d",
"md5": "1a6590a74c614e61fd96986e284f1130",
"sha256": "8aa92661beb1336fe432bcbae173abe742f6d0f9c4373b5e974ef2188168707b"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1a6590a74c614e61fd96986e284f1130",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2000479,
"upload_time": "2025-02-07T18:09:11",
"upload_time_iso_8601": "2025-02-07T18:09:11.108644Z",
"url": "https://files.pythonhosted.org/packages/81/4e/3dc1f66d4f24b63ffff28eedb9d81ba366fc06af61e64ee784d26296004d/pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e90acb9b7d59e4bf41021cf659951cef5ce8135d5517053ed2ad8ec2702f67c",
"md5": "76cddd6a1937b1e46bca6188467e6285",
"sha256": "a3e29395683a28294df58822e118944c6a02cba26910bc933d5e86a87bc9d819"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "76cddd6a1937b1e46bca6188467e6285",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2133267,
"upload_time": "2025-02-07T18:09:13",
"upload_time_iso_8601": "2025-02-07T18:09:13.766095Z",
"url": "https://files.pythonhosted.org/packages/8e/90/acb9b7d59e4bf41021cf659951cef5ce8135d5517053ed2ad8ec2702f67c/pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6948aca154a2098d7ca3d2918dffa14469ef1807bb83d1a239ef0cc7017680f9",
"md5": "58d9cc9b29a9eb1dcc481dfb490764cb",
"sha256": "366ac244b2552f502814a16fc5d94ad2bb23eb062a3821b8b9ba5084ff2afe41"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "58d9cc9b29a9eb1dcc481dfb490764cb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2770521,
"upload_time": "2025-02-07T18:09:15",
"upload_time_iso_8601": "2025-02-07T18:09:15.833729Z",
"url": "https://files.pythonhosted.org/packages/69/48/aca154a2098d7ca3d2918dffa14469ef1807bb83d1a239ef0cc7017680f9/pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd9301c953fe7f99236d9f8abf80503d5f0d574a9dbfa292d12a4ae66568498c",
"md5": "9daadff2246420381dd0202e5b32ff5a",
"sha256": "dc3461a85b48faa8c0f3ab4d7ac5f909a80c7c9e2a3c795d42e96c3435819993"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9daadff2246420381dd0202e5b32ff5a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2033852,
"upload_time": "2025-02-07T18:09:17",
"upload_time_iso_8601": "2025-02-07T18:09:17.395579Z",
"url": "https://files.pythonhosted.org/packages/cd/93/01c953fe7f99236d9f8abf80503d5f0d574a9dbfa292d12a4ae66568498c/pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2830927fe1493bdd605d6f2fe7d3f7422be3396e3e9ec7b6bfb82a6a3381911e",
"md5": "fb205d584445b538fe085b3bd86cef6d",
"sha256": "e57de4d923a3568276ce7c8b6b24b1c0157d6a51ac65290203b77e2e20c0453d"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "fb205d584445b538fe085b3bd86cef6d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2128977,
"upload_time": "2025-02-07T18:09:19",
"upload_time_iso_8601": "2025-02-07T18:09:19.940561Z",
"url": "https://files.pythonhosted.org/packages/28/30/927fe1493bdd605d6f2fe7d3f7422be3396e3e9ec7b6bfb82a6a3381911e/pydantic_core-2.29.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "446adcdc780fb0b97824208993a454433135d8577e97e156aeb5a1b354e0ae30",
"md5": "f65adeb167771976c558c7fc830ce6e1",
"sha256": "05bed77fbce07eef62f9584b0552c2b35e0321f896b28067620dd18058c89e66"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "f65adeb167771976c558c7fc830ce6e1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2073638,
"upload_time": "2025-02-07T18:09:22",
"upload_time_iso_8601": "2025-02-07T18:09:22.367122Z",
"url": "https://files.pythonhosted.org/packages/44/6a/dcdc780fb0b97824208993a454433135d8577e97e156aeb5a1b354e0ae30/pydantic_core-2.29.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02f66f37cb0f9dd621c0056ce0ff45ab1cde9d8ba0b32e15695ea5dec1807f23",
"md5": "053efeedbcb866904e110bb1fdfff830",
"sha256": "ba675f218ba689f2bfc980bf455772947cb331905800b054a94446d9e120c4f8"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "053efeedbcb866904e110bb1fdfff830",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2254289,
"upload_time": "2025-02-07T18:09:24",
"upload_time_iso_8601": "2025-02-07T18:09:24.004875Z",
"url": "https://files.pythonhosted.org/packages/02/f6/6f37cb0f9dd621c0056ce0ff45ab1cde9d8ba0b32e15695ea5dec1807f23/pydantic_core-2.29.0-cp311-cp311-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c46f17a1a02bee33f4df858fe8de71b25c24f8c26f7c3410885237b93a47ced",
"md5": "c43b28545b7b5520b7cf4d8ddd40aeba",
"sha256": "6fa3dfbd761395e32ad7b2a099ba07f2caeccc26d979a67787844c437541f9c8"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c43b28545b7b5520b7cf4d8ddd40aeba",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2236760,
"upload_time": "2025-02-07T18:09:25",
"upload_time_iso_8601": "2025-02-07T18:09:25.890570Z",
"url": "https://files.pythonhosted.org/packages/7c/46/f17a1a02bee33f4df858fe8de71b25c24f8c26f7c3410885237b93a47ced/pydantic_core-2.29.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92860fd8d41fe53ff1c079dc7c331829ba9b465f28d05733bee6fb32e8c6fd28",
"md5": "751866b0751c310ab6dde1cc6aad2a6e",
"sha256": "04cdcafd875638aa325706e1736c7e8667d19b5de281148d7bac4de51dd7016e"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "751866b0751c310ab6dde1cc6aad2a6e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1928262,
"upload_time": "2025-02-07T18:09:27",
"upload_time_iso_8601": "2025-02-07T18:09:27.677216Z",
"url": "https://files.pythonhosted.org/packages/92/86/0fd8d41fe53ff1c079dc7c331829ba9b465f28d05733bee6fb32e8c6fd28/pydantic_core-2.29.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "08685c68a99cab786d14bfd85aa711c8147965a109a7250e97aecc51708322cd",
"md5": "4e347d425f0deea861f708a71556c106",
"sha256": "5b74ef07ba7f9a0c84e594d8aeac289469d801687139a916a7b2b3ad5196ac01"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "4e347d425f0deea861f708a71556c106",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1985064,
"upload_time": "2025-02-07T18:09:29",
"upload_time_iso_8601": "2025-02-07T18:09:29.332238Z",
"url": "https://files.pythonhosted.org/packages/08/68/5c68a99cab786d14bfd85aa711c8147965a109a7250e97aecc51708322cd/pydantic_core-2.29.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "77a5243de2c677958176be9890a502bd1297eb52cc9f07dd7c1fcfd0fff00380",
"md5": "7c0cdf57f877e5c5f96d3640ac12d95b",
"sha256": "dec2e35dab27a560bab25bcbff18b479de13b6f8432527449fd03f6b1b843ffd"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "7c0cdf57f877e5c5f96d3640ac12d95b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1899103,
"upload_time": "2025-02-07T18:09:31",
"upload_time_iso_8601": "2025-02-07T18:09:31.045966Z",
"url": "https://files.pythonhosted.org/packages/77/a5/243de2c677958176be9890a502bd1297eb52cc9f07dd7c1fcfd0fff00380/pydantic_core-2.29.0-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "77492a7e4f9f770bcab564dc03d43052a43c4e52a150a9275f658a3c75a00fb2",
"md5": "35f35d0312f095f1876597af25c9bbe8",
"sha256": "d588c0a4225bfdc4909bbce37631e6838e210d2899978de9d95c4972bed4f8da"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "35f35d0312f095f1876597af25c9bbe8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2018130,
"upload_time": "2025-02-07T18:09:32",
"upload_time_iso_8601": "2025-02-07T18:09:32.565489Z",
"url": "https://files.pythonhosted.org/packages/77/49/2a7e4f9f770bcab564dc03d43052a43c4e52a150a9275f658a3c75a00fb2/pydantic_core-2.29.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "357dd585f75ad9f8e7ed042dbe08c99d2ef69ee82f550fc93080a25f0892d768",
"md5": "ddbaef3069577fbf53602aa0001e593e",
"sha256": "3b773a15a6992263a7e3f49c4b9784c7939e820cdde043fba8ddb4436ea96467"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ddbaef3069577fbf53602aa0001e593e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1878298,
"upload_time": "2025-02-07T18:09:34",
"upload_time_iso_8601": "2025-02-07T18:09:34.243890Z",
"url": "https://files.pythonhosted.org/packages/35/7d/d585f75ad9f8e7ed042dbe08c99d2ef69ee82f550fc93080a25f0892d768/pydantic_core-2.29.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a29f5ae8a350fb287364d433b727a7ff030d1f14b83f17189f367fe2dc5639af",
"md5": "6f1751c2ffa2a4ecba56c928e22e35cd",
"sha256": "978fb22eeaf140515d34e4f34f40bf14b8e21c07788709e10f6ba25b29e537e6"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6f1751c2ffa2a4ecba56c928e22e35cd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1897227,
"upload_time": "2025-02-07T18:09:36",
"upload_time_iso_8601": "2025-02-07T18:09:36.719147Z",
"url": "https://files.pythonhosted.org/packages/a2/9f/5ae8a350fb287364d433b727a7ff030d1f14b83f17189f367fe2dc5639af/pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "46370591eaa91f77e5497a9be19ec7ecd447de4b0f37cf0d7ad37001db26abab",
"md5": "a7922706caa9f6548d81e3f44729ed0b",
"sha256": "3a568a0e090441b2149aa5985b68a19e89d95b8adcdf963e17e9e64954149b68"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a7922706caa9f6548d81e3f44729ed0b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1980299,
"upload_time": "2025-02-07T18:09:38",
"upload_time_iso_8601": "2025-02-07T18:09:38.441125Z",
"url": "https://files.pythonhosted.org/packages/46/37/0591eaa91f77e5497a9be19ec7ecd447de4b0f37cf0d7ad37001db26abab/pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd9f541d2907af017113ecfe42f59d0335554a2ef850520f3344892c14902034",
"md5": "f0109511973d25c879a1bec648ad8885",
"sha256": "20c3fda734d977acf65a90df411dc2fa06ad31f30d7bbcd50e37858e23b7c6a5"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f0109511973d25c879a1bec648ad8885",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2121471,
"upload_time": "2025-02-07T18:09:40",
"upload_time_iso_8601": "2025-02-07T18:09:40.139189Z",
"url": "https://files.pythonhosted.org/packages/cd/9f/541d2907af017113ecfe42f59d0335554a2ef850520f3344892c14902034/pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f120a05040154e3aa91c260c21997718693b948179c58f3ba7e951dd9fb8ffd4",
"md5": "c370cc27b1ad336275ab83492097ded2",
"sha256": "55359359017d6f7eb04e054b1390b89d94e2f6d2946ed7b92ebe6dd481c582cf"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c370cc27b1ad336275ab83492097ded2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2700716,
"upload_time": "2025-02-07T18:09:42",
"upload_time_iso_8601": "2025-02-07T18:09:42.499576Z",
"url": "https://files.pythonhosted.org/packages/f1/20/a05040154e3aa91c260c21997718693b948179c58f3ba7e951dd9fb8ffd4/pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a7441b17f5dc13164ac2282ab26748ec1ec90419163d888574d0e7440a6bec5b",
"md5": "67979b4a2cce9e5da64b2e406f6ac9de",
"sha256": "ab5a50a8276de8d803f52cba3d61d5714b07ae1b8e95ea9b073ea3c9bed0a81e"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "67979b4a2cce9e5da64b2e406f6ac9de",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2042224,
"upload_time": "2025-02-07T18:09:45",
"upload_time_iso_8601": "2025-02-07T18:09:45.264152Z",
"url": "https://files.pythonhosted.org/packages/a7/44/1b17f5dc13164ac2282ab26748ec1ec90419163d888574d0e7440a6bec5b/pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4bac0faee9213e5bc4c4af6a2815ae05263333760f2311385de5e0652f5a43b9",
"md5": "91eef91ece4003331d3583b66b7d0c5e",
"sha256": "b1ce0a52365771ec5337c36761a1b3ae44872d46bf67b7367acbf9120c36125f"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "91eef91ece4003331d3583b66b7d0c5e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2118278,
"upload_time": "2025-02-07T18:09:47",
"upload_time_iso_8601": "2025-02-07T18:09:47.804420Z",
"url": "https://files.pythonhosted.org/packages/4b/ac/0faee9213e5bc4c4af6a2815ae05263333760f2311385de5e0652f5a43b9/pydantic_core-2.29.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1ae3dcce2327c34709f1c8c4e12a9b7650540fce0630a407da255b04e114a448",
"md5": "1879f6dd96d98a0105c7575f869e7cca",
"sha256": "ebbdaf3d9830b2ebe7d7302cb4db37d206b0f82a9e0701da9e2375097d8708bb"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "1879f6dd96d98a0105c7575f869e7cca",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2058177,
"upload_time": "2025-02-07T18:09:49",
"upload_time_iso_8601": "2025-02-07T18:09:49.371822Z",
"url": "https://files.pythonhosted.org/packages/1a/e3/dcce2327c34709f1c8c4e12a9b7650540fce0630a407da255b04e114a448/pydantic_core-2.29.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "336155fb2c3c007f4a9e18197e41d6746150bb9a7ca3855a9f311ba5ad19a58b",
"md5": "f85338663adcede8d7aeda91c97637f6",
"sha256": "7411ad901151b4805abf79835b09915eb66eae6e5c8273f2cb82da2fcb9e2da5"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "f85338663adcede8d7aeda91c97637f6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2230114,
"upload_time": "2025-02-07T18:09:51",
"upload_time_iso_8601": "2025-02-07T18:09:51.178040Z",
"url": "https://files.pythonhosted.org/packages/33/61/55fb2c3c007f4a9e18197e41d6746150bb9a7ca3855a9f311ba5ad19a58b/pydantic_core-2.29.0-cp312-cp312-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0c1093eb7d36e5ad4b69005ab680e18527799cb622e3469deb9a2ac4caf89bb",
"md5": "175a39f124b8641b67572241ad05e876",
"sha256": "f957efe72976e2c2eacab23c81104eedd13f9c0ab2e73f3ade9c1d6fc02005c9"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "175a39f124b8641b67572241ad05e876",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2228186,
"upload_time": "2025-02-07T18:09:52",
"upload_time_iso_8601": "2025-02-07T18:09:52.818895Z",
"url": "https://files.pythonhosted.org/packages/c0/c1/093eb7d36e5ad4b69005ab680e18527799cb622e3469deb9a2ac4caf89bb/pydantic_core-2.29.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fbf88d2f114b722fa18ab4e29b4cc8a24cf427a4129518dc883e537ada1dc6b5",
"md5": "41b3856f311ec9c2471b3dadd72ebbf6",
"sha256": "8f981b20e7d05eba911536adc43b09c2d16e599b149146fd082c692f054daeaf"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "41b3856f311ec9c2471b3dadd72ebbf6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1909599,
"upload_time": "2025-02-07T18:09:55",
"upload_time_iso_8601": "2025-02-07T18:09:55.280920Z",
"url": "https://files.pythonhosted.org/packages/fb/f8/8d2f114b722fa18ab4e29b4cc8a24cf427a4129518dc883e537ada1dc6b5/pydantic_core-2.29.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5fae998e4873bcb9f95c930349de4efc02de71e3fd7554f86dda69410365f054",
"md5": "649b914f6fd134a26ecddd40a3ad7777",
"sha256": "c64195be924b9a0658aef39e049afe10bf491c7897de84e2282152862a4afbf6"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "649b914f6fd134a26ecddd40a3ad7777",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1999702,
"upload_time": "2025-02-07T18:09:57",
"upload_time_iso_8601": "2025-02-07T18:09:57.033909Z",
"url": "https://files.pythonhosted.org/packages/5f/ae/998e4873bcb9f95c930349de4efc02de71e3fd7554f86dda69410365f054/pydantic_core-2.29.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64775441b9c31ffe49efb4a3e2458fa886befca4201cb2237d1320646cf78047",
"md5": "8e9f0041c2d08532ed92ed2c4fa48754",
"sha256": "e37ff0c906f4931dbc6866f8b0c42613b80306772b9847f409086b7f9d762f65"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "8e9f0041c2d08532ed92ed2c4fa48754",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1894324,
"upload_time": "2025-02-07T18:09:58",
"upload_time_iso_8601": "2025-02-07T18:09:58.703449Z",
"url": "https://files.pythonhosted.org/packages/64/77/5441b9c31ffe49efb4a3e2458fa886befca4201cb2237d1320646cf78047/pydantic_core-2.29.0-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a7b9e21b3220e4ac8435d548d67ecb136f99ed3cf5dd3773f9d18994563c570",
"md5": "975ab0c6df28691c5ee56a4d8efa03c0",
"sha256": "4c35461bdb979b5073e03db9e17ad552c1e79b87ffb6fc41c8826976ea7ab8a8"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "975ab0c6df28691c5ee56a4d8efa03c0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2023244,
"upload_time": "2025-02-07T18:10:00",
"upload_time_iso_8601": "2025-02-07T18:10:00.535504Z",
"url": "https://files.pythonhosted.org/packages/3a/7b/9e21b3220e4ac8435d548d67ecb136f99ed3cf5dd3773f9d18994563c570/pydantic_core-2.29.0-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a980ceae62aae8fc9cf4925eeb5e299993235986bba6a38c55af55067b6eda71",
"md5": "fc302d480287ae106b1412b69c6946b5",
"sha256": "09cbd22633b539e0dc3f5ee4f78e3d3a09b22d620e891f4d8bcbc86a61554e00"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fc302d480287ae106b1412b69c6946b5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1876494,
"upload_time": "2025-02-07T18:10:02",
"upload_time_iso_8601": "2025-02-07T18:10:02.576036Z",
"url": "https://files.pythonhosted.org/packages/a9/80/ceae62aae8fc9cf4925eeb5e299993235986bba6a38c55af55067b6eda71/pydantic_core-2.29.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e1ef9463d0b3b549de45638fcdbad8dd43b85ef1d2001ac09525b80fdd9cc7d9",
"md5": "6cc815912b192f1130ae0665241dc893",
"sha256": "9a72188f290bc97ea4c95e59194b024b58ef39e7e6ee53ee882231194ea35a02"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6cc815912b192f1130ae0665241dc893",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1901663,
"upload_time": "2025-02-07T18:10:04",
"upload_time_iso_8601": "2025-02-07T18:10:04.528651Z",
"url": "https://files.pythonhosted.org/packages/e1/ef/9463d0b3b549de45638fcdbad8dd43b85ef1d2001ac09525b80fdd9cc7d9/pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d509959a025ea0a7663b7e0c9055c2add43b67de81fcaddafb62e91bcba37ff",
"md5": "eeacf9db1fd8a833e167bcdbc63908a5",
"sha256": "54922d8b3b85623f2256f6a3daa3990c47c2ff3805c3660ce9fce97f455a424a"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "eeacf9db1fd8a833e167bcdbc63908a5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1987237,
"upload_time": "2025-02-07T18:10:06",
"upload_time_iso_8601": "2025-02-07T18:10:06.291576Z",
"url": "https://files.pythonhosted.org/packages/8d/50/9959a025ea0a7663b7e0c9055c2add43b67de81fcaddafb62e91bcba37ff/pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ce51bc652fde35f7caf1e0e8d9beb89de6e3daee45d8fbce1637a5ae5ef08ca",
"md5": "952ab1430d1faabf527d113cd15f89ec",
"sha256": "8a58c6a92097c62bf3cad0baf44858a1a382b5ef1a2800f3d503a75f61300794"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "952ab1430d1faabf527d113cd15f89ec",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2121954,
"upload_time": "2025-02-07T18:10:08",
"upload_time_iso_8601": "2025-02-07T18:10:08.475914Z",
"url": "https://files.pythonhosted.org/packages/5c/e5/1bc652fde35f7caf1e0e8d9beb89de6e3daee45d8fbce1637a5ae5ef08ca/pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7fcb847727eb23b6f2d91f3f50e413181f1d5b3ff930bc1a90837a355b1f5e13",
"md5": "3496f22934f7412e3ccd1736f22e2555",
"sha256": "e4643b48b19a0bedc4c0421d8488111feedf7bc7e044389988dd9bda3ef4b78a"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3496f22934f7412e3ccd1736f22e2555",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2701427,
"upload_time": "2025-02-07T18:10:10",
"upload_time_iso_8601": "2025-02-07T18:10:10.253700Z",
"url": "https://files.pythonhosted.org/packages/7f/cb/847727eb23b6f2d91f3f50e413181f1d5b3ff930bc1a90837a355b1f5e13/pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dbcf0f993819d46324134f8af0e466a932e6b3925553b101170bbe4f04ba5475",
"md5": "300ccf82ddafa0760aa174e03f69aa4c",
"sha256": "83008a96504be140e38a30a2f51584a942419b6d0a7214c84ba760685f4bf0b5"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "300ccf82ddafa0760aa174e03f69aa4c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2042209,
"upload_time": "2025-02-07T18:10:12",
"upload_time_iso_8601": "2025-02-07T18:10:12.198710Z",
"url": "https://files.pythonhosted.org/packages/db/cf/0f993819d46324134f8af0e466a932e6b3925553b101170bbe4f04ba5475/pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6bb49470f68933206af897dcecec479cb6d653b2225fac576f0d2144d5b9f100",
"md5": "61aaa9e91579eb2c7f0eb81a8436dd90",
"sha256": "f8085e8530eb6a231b2261cd03a4a67b129cb5a78ff3b16efc7b090688647014"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "61aaa9e91579eb2c7f0eb81a8436dd90",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2123243,
"upload_time": "2025-02-07T18:10:14",
"upload_time_iso_8601": "2025-02-07T18:10:14.135779Z",
"url": "https://files.pythonhosted.org/packages/6b/b4/9470f68933206af897dcecec479cb6d653b2225fac576f0d2144d5b9f100/pydantic_core-2.29.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd031cd776a47e2602cdaa95cf0fbe9f3fa442edabf7b8c9c14fc0e8e8e36892",
"md5": "fad179162b24d53093fd28ca6f1974eb",
"sha256": "d612c46e0f1e03a3802b8cbb6da679a8ac6c97744c65df953e8ef36cc2919f5d"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "fad179162b24d53093fd28ca6f1974eb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2063509,
"upload_time": "2025-02-07T18:10:16",
"upload_time_iso_8601": "2025-02-07T18:10:16.171905Z",
"url": "https://files.pythonhosted.org/packages/dd/03/1cd776a47e2602cdaa95cf0fbe9f3fa442edabf7b8c9c14fc0e8e8e36892/pydantic_core-2.29.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "edf560b4ac2e2430cb8787e61d04c5ffbb901bc56769c33ddc71571eff2d594b",
"md5": "6854f1c9240fa4c5327672da42c9745d",
"sha256": "6a978c70e42dbb90c9dbea4429ff807cceeb7c4ef7e2a9e6942f22c28e1b27b1"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "6854f1c9240fa4c5327672da42c9745d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2239943,
"upload_time": "2025-02-07T18:10:18",
"upload_time_iso_8601": "2025-02-07T18:10:18.188221Z",
"url": "https://files.pythonhosted.org/packages/ed/f5/60b4ac2e2430cb8787e61d04c5ffbb901bc56769c33ddc71571eff2d594b/pydantic_core-2.29.0-cp313-cp313-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3c5dfb65e2f8734ce4bd36e38a95945725e897dff4c428a58a5e80390991c8c",
"md5": "c63a8007a8b4fec71a790c54ad56d7a6",
"sha256": "daa3de513ef07c89c284dfb5e18100e082629ebde7d427fa87e02ffba8f3872e"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c63a8007a8b4fec71a790c54ad56d7a6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2234489,
"upload_time": "2025-02-07T18:10:20",
"upload_time_iso_8601": "2025-02-07T18:10:20.038009Z",
"url": "https://files.pythonhosted.org/packages/b3/c5/dfb65e2f8734ce4bd36e38a95945725e897dff4c428a58a5e80390991c8c/pydantic_core-2.29.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f40b6ef557823655ddfa9e86c4c75652ed47542c69327a57f5448e847addd205",
"md5": "69e80cdecaf1b3b6cdd010a430aedc5b",
"sha256": "7a743617f622482c1ccbba82466e175687915fea994fdc83f4188233a7405207"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "69e80cdecaf1b3b6cdd010a430aedc5b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1838099,
"upload_time": "2025-02-07T18:10:32",
"upload_time_iso_8601": "2025-02-07T18:10:32.117558Z",
"url": "https://files.pythonhosted.org/packages/f4/0b/6ef557823655ddfa9e86c4c75652ed47542c69327a57f5448e847addd205/pydantic_core-2.29.0-cp313-cp313t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2cbbe2e96832582cfb47fdf596377ad70d54c490eba3b656829d53688fc8d49e",
"md5": "9d30daab154747d447474e5c59502a60",
"sha256": "c217212ea90ce79f5cccad8c953cea341d63a92bd240f0512e67a735c21a19a6"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9d30daab154747d447474e5c59502a60",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2013722,
"upload_time": "2025-02-07T18:10:33",
"upload_time_iso_8601": "2025-02-07T18:10:33.981293Z",
"url": "https://files.pythonhosted.org/packages/2c/bb/e2e96832582cfb47fdf596377ad70d54c490eba3b656829d53688fc8d49e/pydantic_core-2.29.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "82a3aeff32afd2fcc2be65257a5b0a012658b178820466bd4874704f35892340",
"md5": "786e7eef1435bd460173e46987010f4e",
"sha256": "00d6b6af6e1de398fc225b333288817555bfe9f05dd26af9ff1707543459d03c"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "786e7eef1435bd460173e46987010f4e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1969827,
"upload_time": "2025-02-07T18:10:36",
"upload_time_iso_8601": "2025-02-07T18:10:36.367307Z",
"url": "https://files.pythonhosted.org/packages/82/a3/aeff32afd2fcc2be65257a5b0a012658b178820466bd4874704f35892340/pydantic_core-2.29.0-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5ba9062e319b965fcb51f1d213d94ac174ba0c4e30a5b0734c482617f1dc069",
"md5": "700d823de09c64ba55c453131b8d536a",
"sha256": "d57243e26a1f995d0eca80b0f0db9e74b2f4ad65f279f26ec8df639b0e600675"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "700d823de09c64ba55c453131b8d536a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1916531,
"upload_time": "2025-02-07T18:10:22",
"upload_time_iso_8601": "2025-02-07T18:10:22.878629Z",
"url": "https://files.pythonhosted.org/packages/c5/ba/9062e319b965fcb51f1d213d94ac174ba0c4e30a5b0734c482617f1dc069/pydantic_core-2.29.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4378ba1bfc367e6197e9f986479c2759ed3047367f2fbe0b09b3bd9265232be3",
"md5": "b160653bd8f6e9493166216f0a1aed07",
"sha256": "b585cc038992f6dc6431a354e0d8293548c548f6a2c2fbc223c80c32aab24aa9"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "b160653bd8f6e9493166216f0a1aed07",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1998894,
"upload_time": "2025-02-07T18:10:24",
"upload_time_iso_8601": "2025-02-07T18:10:24.949483Z",
"url": "https://files.pythonhosted.org/packages/43/78/ba1bfc367e6197e9f986479c2759ed3047367f2fbe0b09b3bd9265232be3/pydantic_core-2.29.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e4d86e270f4aba96895f172e79afcceff81a4bd3e9db999476141c72132a5ba6",
"md5": "dd5723acfebf3c4c0f573052dc9fbdb7",
"sha256": "d0bf68e9ab0176869ef7d62d88f408bbb1d2a110b6abdc6317af5994722f987d"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "dd5723acfebf3c4c0f573052dc9fbdb7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1900301,
"upload_time": "2025-02-07T18:10:26",
"upload_time_iso_8601": "2025-02-07T18:10:26.991487Z",
"url": "https://files.pythonhosted.org/packages/e4/d8/6e270f4aba96895f172e79afcceff81a4bd3e9db999476141c72132a5ba6/pydantic_core-2.29.0-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0c777b77d97183a58441d2a910e61de11d0aef6ccb67d470fa2204071e65153",
"md5": "121cabc12472e5b2044c43038e31444c",
"sha256": "61445358f338828792abcfae0702fbef312ad2a9f0e7aba9418bbf679ca74ccb"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "121cabc12472e5b2044c43038e31444c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2038876,
"upload_time": "2025-02-07T18:10:38",
"upload_time_iso_8601": "2025-02-07T18:10:38.231746Z",
"url": "https://files.pythonhosted.org/packages/e0/c7/77b77d97183a58441d2a910e61de11d0aef6ccb67d470fa2204071e65153/pydantic_core-2.29.0-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9c8bcf5b7fee3c313fc9a640b168e043291e4dae823330a969342a80bc5d55ce",
"md5": "bcd4851ffd3d5b4fc662ef20b0e6c183",
"sha256": "6de613ff519d7a70fdba5c9357cc61399dba86f0f2f3ee0ad84b6df64efb1386"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bcd4851ffd3d5b4fc662ef20b0e6c183",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1880801,
"upload_time": "2025-02-07T18:10:44",
"upload_time_iso_8601": "2025-02-07T18:10:44.206433Z",
"url": "https://files.pythonhosted.org/packages/9c/8b/cf5b7fee3c313fc9a640b168e043291e4dae823330a969342a80bc5d55ce/pydantic_core-2.29.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7a9cd6cae1bf3ed06d80b9b8193d2c3363d8caec4a7d075831a85b76169ea56",
"md5": "5d21e6a2576280ff85dd28441dca955b",
"sha256": "e555aff90168d18d4149bc9d90b925fa1c8f896cd77a55802035341fbc835563"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5d21e6a2576280ff85dd28441dca955b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1912097,
"upload_time": "2025-02-07T18:10:46",
"upload_time_iso_8601": "2025-02-07T18:10:46.981369Z",
"url": "https://files.pythonhosted.org/packages/c7/a9/cd6cae1bf3ed06d80b9b8193d2c3363d8caec4a7d075831a85b76169ea56/pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "424aaccd4e900964ed97f31c7bf41468924a05cdc7002f99a7d4777420ba0f69",
"md5": "67009b983672efa3c7c837d0407d679f",
"sha256": "2d8fab757f17c73815848575a66f75aa4041c99de6e0f0b4eb845830906685cd"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "67009b983672efa3c7c837d0407d679f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1997595,
"upload_time": "2025-02-07T18:10:49",
"upload_time_iso_8601": "2025-02-07T18:10:49.052893Z",
"url": "https://files.pythonhosted.org/packages/42/4a/accd4e900964ed97f31c7bf41468924a05cdc7002f99a7d4777420ba0f69/pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9926a910d3a0a8723e21207bce0c859bcf308ec9b39707771f38876e4727e618",
"md5": "6cc9b66710b027c62812fff073bdd854",
"sha256": "385cd60e218d27d044d863e38a19e410bce844cd95e9454bd2b8ee422e1ee442"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6cc9b66710b027c62812fff073bdd854",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2132126,
"upload_time": "2025-02-07T18:10:52",
"upload_time_iso_8601": "2025-02-07T18:10:52.859786Z",
"url": "https://files.pythonhosted.org/packages/99/26/a910d3a0a8723e21207bce0c859bcf308ec9b39707771f38876e4727e618/pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "16365105cd6e04e8879702dc7ad5febeaf0c60c139af97d37f3efd1229574c17",
"md5": "a4a69c48c091fe00230deae61b671a8a",
"sha256": "24037f37c404bd840974ffff858913c692dd4b8531c1ba636edccb47baf3c68a"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a4a69c48c091fe00230deae61b671a8a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2776510,
"upload_time": "2025-02-07T18:10:56",
"upload_time_iso_8601": "2025-02-07T18:10:56.083132Z",
"url": "https://files.pythonhosted.org/packages/16/36/5105cd6e04e8879702dc7ad5febeaf0c60c139af97d37f3efd1229574c17/pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "44e5667144c75aa859fba903dff85dce37be22e7e14d78048992a25e517f2672",
"md5": "76c457ea96239a0f5ec87e3414b7d7b6",
"sha256": "8e90607296da639eab986080d930e88f24201181ebd04d8e74dee6f7b01628c2"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "76c457ea96239a0f5ec87e3414b7d7b6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2035974,
"upload_time": "2025-02-07T18:10:58",
"upload_time_iso_8601": "2025-02-07T18:10:58.100782Z",
"url": "https://files.pythonhosted.org/packages/44/e5/667144c75aa859fba903dff85dce37be22e7e14d78048992a25e517f2672/pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89da223326b26c2152189e3b69960f135e502149a042313251be7a40d27300eb",
"md5": "8ff205a63e3f1176cad89d98e5474c02",
"sha256": "65a8d94b9218ba9385319f88505bbb54cdcc1edc1871b653d1f4e3c8878e175f"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "8ff205a63e3f1176cad89d98e5474c02",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2127682,
"upload_time": "2025-02-07T18:10:59",
"upload_time_iso_8601": "2025-02-07T18:10:59.945245Z",
"url": "https://files.pythonhosted.org/packages/89/da/223326b26c2152189e3b69960f135e502149a042313251be7a40d27300eb/pydantic_core-2.29.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7bc9279ebe5884788ecc9178cf2dac659556e2f9b043af2b790515cb662cc1cc",
"md5": "4b57c95683712b87f3a528b6fe46a032",
"sha256": "4b9053a6b1614904ebe5ff14be9ad6733aee7b523a148640f38645e1ce6b1a03"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4b57c95683712b87f3a528b6fe46a032",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2073325,
"upload_time": "2025-02-07T18:11:02",
"upload_time_iso_8601": "2025-02-07T18:11:02.635981Z",
"url": "https://files.pythonhosted.org/packages/7b/c9/279ebe5884788ecc9178cf2dac659556e2f9b043af2b790515cb662cc1cc/pydantic_core-2.29.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7805ee25803ed458f737129c56f9df47b36e6ed5975ab040a29451764d689e8f",
"md5": "4db235bb48ac45d1fc667c3ae2fae90b",
"sha256": "168bd0aea14b409af521c4b053cf62e5b13c4a6e464e7d9ca3ceac18e6e505b3"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "4db235bb48ac45d1fc667c3ae2fae90b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2251931,
"upload_time": "2025-02-07T18:11:04",
"upload_time_iso_8601": "2025-02-07T18:11:04.638013Z",
"url": "https://files.pythonhosted.org/packages/78/05/ee25803ed458f737129c56f9df47b36e6ed5975ab040a29451764d689e8f/pydantic_core-2.29.0-cp39-cp39-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5937d007a67369a7ea405edeea927beb7f6ab453e353be390a90c619041a506",
"md5": "62911a156bc5d7d389e5b46d6f6abeb9",
"sha256": "4f99d37c7b92b8faea9bd3137253cda60c32caa9774a4ed459161ffcc66aee01"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "62911a156bc5d7d389e5b46d6f6abeb9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2236196,
"upload_time": "2025-02-07T18:11:06",
"upload_time_iso_8601": "2025-02-07T18:11:06.871163Z",
"url": "https://files.pythonhosted.org/packages/e5/93/7d007a67369a7ea405edeea927beb7f6ab453e353be390a90c619041a506/pydantic_core-2.29.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d12654a2bc2a6b95a970b2fadb8f264fe8aaf6d2feecf254bded1eb0b8aa754",
"md5": "5848a70530b86887cdf89f820d55037e",
"sha256": "ed03402d406465addff739495a52cf1e016f4156ece7bb2ea36a95d04414e641"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "5848a70530b86887cdf89f820d55037e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1927405,
"upload_time": "2025-02-07T18:11:09",
"upload_time_iso_8601": "2025-02-07T18:11:09.084030Z",
"url": "https://files.pythonhosted.org/packages/0d/12/654a2bc2a6b95a970b2fadb8f264fe8aaf6d2feecf254bded1eb0b8aa754/pydantic_core-2.29.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "22492e42d597ec3fba65b6992d10a7ba5595a5c4ff180ffe1355e8c9429ac2bd",
"md5": "aa6bd2bf98b9aa5ef43ac00e22192ed1",
"sha256": "956d069723f964b86f5cceafded2239cf89f84b91ee1270c1f50ec81ed24c574"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "aa6bd2bf98b9aa5ef43ac00e22192ed1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1989205,
"upload_time": "2025-02-07T18:11:12",
"upload_time_iso_8601": "2025-02-07T18:11:12.035294Z",
"url": "https://files.pythonhosted.org/packages/22/49/2e42d597ec3fba65b6992d10a7ba5595a5c4ff180ffe1355e8c9429ac2bd/pydantic_core-2.29.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9c38183a6b5c005c01c1d7a5b86258fbe0fb82da865ae82b34a40c7227c7886a",
"md5": "ba9ddccc005c0cd46db64ffbe56cefa5",
"sha256": "09c160565ad434b785b64985bef1d4dc5776525ca57f64107e91ea9982db70b6"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "ba9ddccc005c0cd46db64ffbe56cefa5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2035190,
"upload_time": "2025-02-07T18:11:14",
"upload_time_iso_8601": "2025-02-07T18:11:14.118630Z",
"url": "https://files.pythonhosted.org/packages/9c/38/183a6b5c005c01c1d7a5b86258fbe0fb82da865ae82b34a40c7227c7886a/pydantic_core-2.29.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58c7c8e010e3df73ec9a4ebfd85b5871aac82875d3e03c5882c951efd3d53bf7",
"md5": "13e597a85bfa114a45035ad37af39517",
"sha256": "20321fbdeec98de3dbf923e2e6dfbf2d926d072e3f1c4a24225acf87294e83db"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "13e597a85bfa114a45035ad37af39517",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1877210,
"upload_time": "2025-02-07T18:11:16",
"upload_time_iso_8601": "2025-02-07T18:11:16.138942Z",
"url": "https://files.pythonhosted.org/packages/58/c7/c8e010e3df73ec9a4ebfd85b5871aac82875d3e03c5882c951efd3d53bf7/pydantic_core-2.29.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de2ab7ba84410bf6a6aebd54be01ca230e2bb85645bfe1aa9ae2908616002e4a",
"md5": "7fadc4fdd133b229262c781528587ac6",
"sha256": "5d1ca8e0b3270f3e52041bea996e055dd656e8ba527ed19933d39265d5354bd7"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7fadc4fdd133b229262c781528587ac6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1906153,
"upload_time": "2025-02-07T18:11:18",
"upload_time_iso_8601": "2025-02-07T18:11:18.203812Z",
"url": "https://files.pythonhosted.org/packages/de/2a/b7ba84410bf6a6aebd54be01ca230e2bb85645bfe1aa9ae2908616002e4a/pydantic_core-2.29.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c767c7b1bfd11478454c5741da48c3358f0cf126abb421a77bda25c1fc1d7af5",
"md5": "7b12c59cc946fc67b5476a7230c3fa46",
"sha256": "cd38661628e88ff5c7554b60575b58f6169eca736427a71271f18547104610e3"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7b12c59cc946fc67b5476a7230c3fa46",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2076165,
"upload_time": "2025-02-07T18:11:20",
"upload_time_iso_8601": "2025-02-07T18:11:20.532363Z",
"url": "https://files.pythonhosted.org/packages/c7/67/c7b1bfd11478454c5741da48c3358f0cf126abb421a77bda25c1fc1d7af5/pydantic_core-2.29.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9b450a58e2cde99b5ca2ad56f8f4fa344cb7ac1daf8f816778b7dbf6bb14cfc",
"md5": "1496c70a7cc52c1547600bd1906cc68f",
"sha256": "5efd58e083222c3e9404414bae9ce69fbed811a8dfdf62733e5c3106fc32501b"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "1496c70a7cc52c1547600bd1906cc68f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2123305,
"upload_time": "2025-02-07T18:11:22",
"upload_time_iso_8601": "2025-02-07T18:11:22.835706Z",
"url": "https://files.pythonhosted.org/packages/d9/b4/50a58e2cde99b5ca2ad56f8f4fa344cb7ac1daf8f816778b7dbf6bb14cfc/pydantic_core-2.29.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dfa45303294c7eabcb51995e351c0ee2bf733da733b6e6f4148fe6d234f6d6cf",
"md5": "534c8089660593489b0c40c22aa3e7b7",
"sha256": "b2031357c4b661442cfbb54ad90f46af4db24c8dfa5adc43d3164616cc165137"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "534c8089660593489b0c40c22aa3e7b7",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2068711,
"upload_time": "2025-02-07T18:11:25",
"upload_time_iso_8601": "2025-02-07T18:11:25.001547Z",
"url": "https://files.pythonhosted.org/packages/df/a4/5303294c7eabcb51995e351c0ee2bf733da733b6e6f4148fe6d234f6d6cf/pydantic_core-2.29.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d80b02c69b4251c6d568bd91b3cb15167ec2f47754b3c7c91def641f7c26e20d",
"md5": "15e5447b6fa160d0b810c70719d22e5f",
"sha256": "c0e2cb7d4fdb915b6c8fcedd2993e0129cd2e0d298a8df56ec6e89c67f122017"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "15e5447b6fa160d0b810c70719d22e5f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2249482,
"upload_time": "2025-02-07T18:11:27",
"upload_time_iso_8601": "2025-02-07T18:11:27.341817Z",
"url": "https://files.pythonhosted.org/packages/d8/0b/02c69b4251c6d568bd91b3cb15167ec2f47754b3c7c91def641f7c26e20d/pydantic_core-2.29.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e234ae91ff9ec4829a70bbb4b12c581fb3645e6d66913ff3b5738009d7941a81",
"md5": "c985c5d12c278d91c88bee21c310d766",
"sha256": "28717a77ed32987754da41c65005513820282fb2d94e6a0840a91ffbf7e8b50a"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c985c5d12c278d91c88bee21c310d766",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2232551,
"upload_time": "2025-02-07T18:11:29",
"upload_time_iso_8601": "2025-02-07T18:11:29.473361Z",
"url": "https://files.pythonhosted.org/packages/e2/34/ae91ff9ec4829a70bbb4b12c581fb3645e6d66913ff3b5738009d7941a81/pydantic_core-2.29.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8eae870d7143fa769c3046facc4a04dc9411f144b61b33016fbc669d72b9ac4c",
"md5": "1543ce947c15c502f697265429be31ab",
"sha256": "12f914125c9860deb7f4a47c1581d07544e4e093bf0d2ecb0dc3f69df7ff86fb"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "1543ce947c15c502f697265429be31ab",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 2061836,
"upload_time": "2025-02-07T18:11:31",
"upload_time_iso_8601": "2025-02-07T18:11:31.837653Z",
"url": "https://files.pythonhosted.org/packages/8e/ae/870d7143fa769c3046facc4a04dc9411f144b61b33016fbc669d72b9ac4c/pydantic_core-2.29.0-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b12733458af04b8a7f26c84a92f19948cc1cbff931d49a17fa51060f059d5432",
"md5": "d38f14750b7cb3a403c64d474ff241e0",
"sha256": "2e5e977ff3db03907f61205dbff568541468c70cbeefd246b464bb3ed88c2b83"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "d38f14750b7cb3a403c64d474ff241e0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 2035325,
"upload_time": "2025-02-07T18:11:34",
"upload_time_iso_8601": "2025-02-07T18:11:34.000324Z",
"url": "https://files.pythonhosted.org/packages/b1/27/33458af04b8a7f26c84a92f19948cc1cbff931d49a17fa51060f059d5432/pydantic_core-2.29.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a1e7377645799f3c87cc8737331641e2510552b96d1e2bd364287beb0522c903",
"md5": "77edf17342f9dd44bc940871917811a4",
"sha256": "72887a50331c78bebcd9a158339653f642e8030e716b527f56eb0cc217e74ce5"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "77edf17342f9dd44bc940871917811a4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1877792,
"upload_time": "2025-02-07T18:11:36",
"upload_time_iso_8601": "2025-02-07T18:11:36.352648Z",
"url": "https://files.pythonhosted.org/packages/a1/e7/377645799f3c87cc8737331641e2510552b96d1e2bd364287beb0522c903/pydantic_core-2.29.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cac21bb0ec340f862b0c1eca41a151c7a15303935bf9f66c2dd933964082c0a2",
"md5": "ae862884cd7bfd394be637241fba84e7",
"sha256": "906acc539182116fa24f7a1986daa90c5cc06c5a78edad1085b2b12a2f9fb2ef"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ae862884cd7bfd394be637241fba84e7",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1907064,
"upload_time": "2025-02-07T18:11:39",
"upload_time_iso_8601": "2025-02-07T18:11:39.162413Z",
"url": "https://files.pythonhosted.org/packages/ca/c2/1bb0ec340f862b0c1eca41a151c7a15303935bf9f66c2dd933964082c0a2/pydantic_core-2.29.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "75fa05fd41bc68b628d37138406cf67b5dc4b3e2e80c95737aeaaa5200feea0d",
"md5": "dd93240aa3bd1e41fbbe56591fd2a0ae",
"sha256": "48f76eb2fa415dc2d765546d9df6dc22c7eae0d9d42fe82979d468b6cce75f0b"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dd93240aa3bd1e41fbbe56591fd2a0ae",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 2077036,
"upload_time": "2025-02-07T18:11:41",
"upload_time_iso_8601": "2025-02-07T18:11:41.389681Z",
"url": "https://files.pythonhosted.org/packages/75/fa/05fd41bc68b628d37138406cf67b5dc4b3e2e80c95737aeaaa5200feea0d/pydantic_core-2.29.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27fcbe991183ff5215d6c95b459ab44f64078fcc79f48f373550d5d1c1fb47f2",
"md5": "4098636d1e4dba40790eb2bf7ef3f4f9",
"sha256": "a6a40541ca3255ec9642e01c1dda3b0fcd92b5beaf150c5548ccd86975bfd5c1"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "4098636d1e4dba40790eb2bf7ef3f4f9",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 2123667,
"upload_time": "2025-02-07T18:11:43",
"upload_time_iso_8601": "2025-02-07T18:11:43.717283Z",
"url": "https://files.pythonhosted.org/packages/27/fc/be991183ff5215d6c95b459ab44f64078fcc79f48f373550d5d1c1fb47f2/pydantic_core-2.29.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b8712e76a130e0815284deef63cb2e704cbd219dea552d35d8f18e7d5aded14",
"md5": "76ea2405f8b923b4139135a0a5743f78",
"sha256": "fbccce95304a7072aefad9ea390cf7938dbaba9135515eda5eb394e9055ac6c9"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "76ea2405f8b923b4139135a0a5743f78",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 2069376,
"upload_time": "2025-02-07T18:11:46",
"upload_time_iso_8601": "2025-02-07T18:11:46.570005Z",
"url": "https://files.pythonhosted.org/packages/6b/87/12e76a130e0815284deef63cb2e704cbd219dea552d35d8f18e7d5aded14/pydantic_core-2.29.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b76d09767f55f7eb55fb17cb773567b732bf66a0e10fb14bee3b867a12cc00b",
"md5": "97d2245ebb61a32df501085f7f55190b",
"sha256": "10c8caa107a4ed7c1ec8beaff5fa6ed6307b2cc19eebd74ef11ac77abca78891"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "97d2245ebb61a32df501085f7f55190b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 2249685,
"upload_time": "2025-02-07T18:11:48",
"upload_time_iso_8601": "2025-02-07T18:11:48.932444Z",
"url": "https://files.pythonhosted.org/packages/1b/76/d09767f55f7eb55fb17cb773567b732bf66a0e10fb14bee3b867a12cc00b/pydantic_core-2.29.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56addb9b9f14f1cd15d1235aca063d319abbfcc10c2e4e2f581ee2bc76eee881",
"md5": "06842d0c355260f4d9267e9317cf2741",
"sha256": "0088a001a25cdf65d9ce7697a5c01bc20e7d39b9ae1bd3a6c1e53156cd1e5c0c"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "06842d0c355260f4d9267e9317cf2741",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 2233316,
"upload_time": "2025-02-07T18:11:51",
"upload_time_iso_8601": "2025-02-07T18:11:51.223437Z",
"url": "https://files.pythonhosted.org/packages/56/ad/db9b9f14f1cd15d1235aca063d319abbfcc10c2e4e2f581ee2bc76eee881/pydantic_core-2.29.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce5861bc37454f0021d1586370e1f4e2a39c9dbb0e5a14055b11abcbe583c2df",
"md5": "df8989ff7f7e72cf6ca439addc8c0610",
"sha256": "98112e1ca368f6c6e157a556f51207b81f41380aed3f328923994647da71a722"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "df8989ff7f7e72cf6ca439addc8c0610",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 2061804,
"upload_time": "2025-02-07T18:11:53",
"upload_time_iso_8601": "2025-02-07T18:11:53.570230Z",
"url": "https://files.pythonhosted.org/packages/ce/58/61bc37454f0021d1586370e1f4e2a39c9dbb0e5a14055b11abcbe583c2df/pydantic_core-2.29.0-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79f6904edea98c98c09b8d618d619749af19a50ea5a71b9199ee2131a5a03dfb",
"md5": "a993e1135514f06f0b9755c159e6e6ad",
"sha256": "05cb49f30ee6fd4a554f14dc2a06538931c039f02329621d57ba00465613d28e"
},
"downloads": -1,
"filename": "pydantic_core-2.29.0.tar.gz",
"has_sig": false,
"md5_digest": "a993e1135514f06f0b9755c159e6e6ad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 417255,
"upload_time": "2025-02-07T18:11:55",
"upload_time_iso_8601": "2025-02-07T18:11:55.794834Z",
"url": "https://files.pythonhosted.org/packages/79/f6/904edea98c98c09b8d618d619749af19a50ea5a71b9199ee2131a5a03dfb/pydantic_core-2.29.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-07 18:11:55",
"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"
}