# pydantic-core
[![CI](https://github.com/pydantic/pydantic-core/workflows/ci/badge.svg?event=push)](https://github.com/pydantic/pydantic-core/actions?query=event%3Apush+branch%3Amain+workflow%3Aci)
[![Coverage](https://codecov.io/gh/pydantic/pydantic-core/branch/main/graph/badge.svg)](https://codecov.io/gh/pydantic/pydantic-core)
[![pypi](https://img.shields.io/pypi/v/pydantic-core.svg)](https://pypi.python.org/pypi/pydantic-core)
[![versions](https://img.shields.io/pypi/pyversions/pydantic-core.svg)](https://github.com/pydantic/pydantic-core)
[![license](https://img.shields.io/github/license/pydantic/pydantic-core.svg)](https://github.com/pydantic/pydantic-core/blob/main/LICENSE)
This package provides the core functionality for [pydantic](https://docs.pydantic.dev) validation and serialization.
Pydantic-core is currently around 17x faster than pydantic V1.
See [`tests/benchmarks/`](./tests/benchmarks/) for details.
## Example of direct usage
_NOTE: You should not need to use pydantic-core directly; instead, use pydantic, which in turn uses pydantic-core._
```py
from pydantic_core import SchemaValidator, ValidationError
v = SchemaValidator(
{
'type': 'typed-dict',
'fields': {
'name': {
'type': 'typed-dict-field',
'schema': {
'type': 'str',
},
},
'age': {
'type': 'typed-dict-field',
'schema': {
'type': 'int',
'ge': 18,
},
},
'is_developer': {
'type': 'typed-dict-field',
'schema': {
'type': 'default',
'schema': {'type': 'bool'},
'default': True,
},
},
},
}
)
r1 = v.validate_python({'name': 'Samuel', 'age': 35})
assert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}
# pydantic-core can also validate JSON directly
r2 = v.validate_json('{"name": "Samuel", "age": 35}')
assert r1 == r2
try:
v.validate_python({'name': 'Samuel', 'age': 11})
except ValidationError as e:
print(e)
"""
1 validation error for model
age
Input should be greater than or equal to 18
[type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]
"""
```
## Getting Started
You'll need rust stable [installed](https://rustup.rs/), or rust nightly if you want to generate accurate coverage.
With rust and python 3.8+ installed, compiling pydantic-core should be possible with roughly the following:
```bash
# clone this repo or your fork
git clone git@github.com:pydantic/pydantic-core.git
cd pydantic-core
# create a new virtual env
python3 -m venv env
source env/bin/activate
# install dependencies and install pydantic-core
make install
```
That should be it, the example shown above should now run.
You might find it useful to look at [`python/pydantic_core/_pydantic_core.pyi`](./python/pydantic_core/_pydantic_core.pyi) and
[`python/pydantic_core/core_schema.py`](./python/pydantic_core/core_schema.py) for more information on the python API,
beyond that, [`tests/`](./tests) provide a large number of examples of usage.
If you want to contribute to pydantic-core, you'll want to use some other make commands:
* `make build-dev` to build the package during development
* `make build-prod` to perform an optimised build for benchmarking
* `make test` to run the tests
* `make testcov` to run the tests and generate a coverage report
* `make lint` to run the linter
* `make format` to format python and rust code
* `make` to run `format build-dev lint test`
## Profiling
It's possible to profile the code using the [`flamegraph` utility from `flamegraph-rs`](https://github.com/flamegraph-rs/flamegraph). (Tested on Linux.) You can install this with `cargo install flamegraph`.
Run `make build-profiling` to install a release build with debugging symbols included (needed for profiling).
Once that is built, you can profile pytest benchmarks with (e.g.):
```bash
flamegraph -- pytest tests/benchmarks/test_micro_benchmarks.py -k test_list_of_ints_core_py --benchmark-enable
```
The `flamegraph` command will produce an interactive SVG at `flamegraph.svg`.
## Releasing
1. Bump package version locally. Do not just edit `Cargo.toml` on Github, you need both `Cargo.toml` and `Cargo.lock` to be updated.
2. Make a PR for the version bump and merge it.
3. Go to https://github.com/pydantic/pydantic-core/releases and click "Draft a new release"
4. In the "Choose a tag" dropdown enter the new tag `v<the.new.version>` and select "Create new tag on publish" when the option appears.
5. Enter the release title in the form "v<the.new.version> <YYYY-MM-DD>"
6. Click Generate release notes button
7. Click Publish release
8. Go to https://github.com/pydantic/pydantic-core/actions and ensure that all build for release are done successfully.
9. Go to https://pypi.org/project/pydantic-core/ and ensure that the latest release is published.
10. Done 🎉
Raw data
{
"_id": null,
"home_page": "https://github.com/pydantic/pydantic-core",
"name": "pydantic-core",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Samuel Colvin <s@muelcolvin.com>",
"download_url": "https://files.pythonhosted.org/packages/fc/01/f3e5ac5e7c25833db5eb555f7b7ab24cd6f8c322d3a3ad2d67a952dc0abc/pydantic_core-2.27.2.tar.gz",
"platform": null,
"description": "# pydantic-core\n\n[![CI](https://github.com/pydantic/pydantic-core/workflows/ci/badge.svg?event=push)](https://github.com/pydantic/pydantic-core/actions?query=event%3Apush+branch%3Amain+workflow%3Aci)\n[![Coverage](https://codecov.io/gh/pydantic/pydantic-core/branch/main/graph/badge.svg)](https://codecov.io/gh/pydantic/pydantic-core)\n[![pypi](https://img.shields.io/pypi/v/pydantic-core.svg)](https://pypi.python.org/pypi/pydantic-core)\n[![versions](https://img.shields.io/pypi/pyversions/pydantic-core.svg)](https://github.com/pydantic/pydantic-core)\n[![license](https://img.shields.io/github/license/pydantic/pydantic-core.svg)](https://github.com/pydantic/pydantic-core/blob/main/LICENSE)\n\nThis package provides the core functionality for [pydantic](https://docs.pydantic.dev) validation and serialization.\n\nPydantic-core is currently around 17x faster than pydantic V1.\nSee [`tests/benchmarks/`](./tests/benchmarks/) for details.\n\n## Example of direct usage\n\n_NOTE: You should not need to use pydantic-core directly; instead, use pydantic, which in turn uses pydantic-core._\n\n```py\nfrom pydantic_core import SchemaValidator, ValidationError\n\n\nv = SchemaValidator(\n {\n 'type': 'typed-dict',\n 'fields': {\n 'name': {\n 'type': 'typed-dict-field',\n 'schema': {\n 'type': 'str',\n },\n },\n 'age': {\n 'type': 'typed-dict-field',\n 'schema': {\n 'type': 'int',\n 'ge': 18,\n },\n },\n 'is_developer': {\n 'type': 'typed-dict-field',\n 'schema': {\n 'type': 'default',\n 'schema': {'type': 'bool'},\n 'default': True,\n },\n },\n },\n }\n)\n\nr1 = v.validate_python({'name': 'Samuel', 'age': 35})\nassert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}\n\n# pydantic-core can also validate JSON directly\nr2 = v.validate_json('{\"name\": \"Samuel\", \"age\": 35}')\nassert r1 == r2\n\ntry:\n v.validate_python({'name': 'Samuel', 'age': 11})\nexcept ValidationError as e:\n print(e)\n \"\"\"\n 1 validation error for model\n age\n Input should be greater than or equal to 18\n [type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]\n \"\"\"\n```\n\n## Getting Started\n\nYou'll need rust stable [installed](https://rustup.rs/), or rust nightly if you want to generate accurate coverage.\n\nWith rust and python 3.8+ installed, compiling pydantic-core should be possible with roughly the following:\n\n```bash\n# clone this repo or your fork\ngit clone git@github.com:pydantic/pydantic-core.git\ncd pydantic-core\n# create a new virtual env\npython3 -m venv env\nsource env/bin/activate\n# install dependencies and install pydantic-core\nmake install\n```\n\nThat should be it, the example shown above should now run.\n\nYou might find it useful to look at [`python/pydantic_core/_pydantic_core.pyi`](./python/pydantic_core/_pydantic_core.pyi) and\n[`python/pydantic_core/core_schema.py`](./python/pydantic_core/core_schema.py) for more information on the python API,\nbeyond that, [`tests/`](./tests) provide a large number of examples of usage.\n\nIf you want to contribute to pydantic-core, you'll want to use some other make commands:\n* `make build-dev` to build the package during development\n* `make build-prod` to perform an optimised build for benchmarking\n* `make test` to run the tests\n* `make testcov` to run the tests and generate a coverage report\n* `make lint` to run the linter\n* `make format` to format python and rust code\n* `make` to run `format build-dev lint test`\n\n## Profiling\n\nIt's possible to profile the code using the [`flamegraph` utility from `flamegraph-rs`](https://github.com/flamegraph-rs/flamegraph). (Tested on Linux.) You can install this with `cargo install flamegraph`.\n\nRun `make build-profiling` to install a release build with debugging symbols included (needed for profiling).\n\nOnce that is built, you can profile pytest benchmarks with (e.g.):\n\n```bash\nflamegraph -- pytest tests/benchmarks/test_micro_benchmarks.py -k test_list_of_ints_core_py --benchmark-enable\n```\nThe `flamegraph` command will produce an interactive SVG at `flamegraph.svg`.\n\n## Releasing\n\n1. Bump package version locally. Do not just edit `Cargo.toml` on Github, you need both `Cargo.toml` and `Cargo.lock` to be updated.\n2. Make a PR for the version bump and merge it.\n3. Go to https://github.com/pydantic/pydantic-core/releases and click \"Draft a new release\"\n4. In the \"Choose a tag\" dropdown enter the new tag `v<the.new.version>` and select \"Create new tag on publish\" when the option appears.\n5. Enter the release title in the form \"v<the.new.version> <YYYY-MM-DD>\"\n6. Click Generate release notes button\n7. Click Publish release\n8. Go to https://github.com/pydantic/pydantic-core/actions and ensure that all build for release are done successfully.\n9. Go to https://pypi.org/project/pydantic-core/ and ensure that the latest release is published.\n10. Done \ud83c\udf89\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Core functionality for Pydantic validation and serialization",
"version": "2.27.2",
"project_urls": {
"Funding": "https://github.com/sponsors/samuelcolvin",
"Homepage": "https://github.com/pydantic/pydantic-core",
"Source": "https://github.com/pydantic/pydantic-core"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "3abcfed5f74b5d802cf9a03e83f60f18864e90e3aed7223adaca5ffb7a8d8d64",
"md5": "9a5329c67d4fd9fc3b9fd87f9853f2a2",
"sha256": "2d367ca20b2f14095a8f4fa1210f5a7b78b8a20009ecced6b12818f455b1e9fa"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "9a5329c67d4fd9fc3b9fd87f9853f2a2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1895938,
"upload_time": "2024-12-18T11:27:14",
"upload_time_iso_8601": "2024-12-18T11:27:14.406567Z",
"url": "https://files.pythonhosted.org/packages/3a/bc/fed5f74b5d802cf9a03e83f60f18864e90e3aed7223adaca5ffb7a8d8d64/pydantic_core-2.27.2-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "712a185aff24ce844e39abb8dd680f4e959f0006944f4a8a0ea372d9f9ae2e53",
"md5": "5009d9a437bcf5fbd63b2a6e92fdd805",
"sha256": "491a2b73db93fab69731eaee494f320faa4e093dbed776be1a829c2eb222c34c"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5009d9a437bcf5fbd63b2a6e92fdd805",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1815684,
"upload_time": "2024-12-18T11:27:16",
"upload_time_iso_8601": "2024-12-18T11:27:16.489909Z",
"url": "https://files.pythonhosted.org/packages/71/2a/185aff24ce844e39abb8dd680f4e959f0006944f4a8a0ea372d9f9ae2e53/pydantic_core-2.27.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c343fafabd3d94d159d4f1ed62e383e264f146a17dd4d48453319fd782e7979e",
"md5": "9f61bcc57c24f0487940d60662d10f08",
"sha256": "7969e133a6f183be60e9f6f56bfae753585680f3b7307a8e555a948d443cc05a"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9f61bcc57c24f0487940d60662d10f08",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1829169,
"upload_time": "2024-12-18T11:27:22",
"upload_time_iso_8601": "2024-12-18T11:27:22.160125Z",
"url": "https://files.pythonhosted.org/packages/c3/43/fafabd3d94d159d4f1ed62e383e264f146a17dd4d48453319fd782e7979e/pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2d1f2dfe1a2a637ce6800b799aa086d079998959f6f1215eb4497966efd2274",
"md5": "291aaed87f5cef5fdb65e276810374c4",
"sha256": "3de9961f2a346257caf0aa508a4da705467f53778e9ef6fe744c038119737ef5"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "291aaed87f5cef5fdb65e276810374c4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1867227,
"upload_time": "2024-12-18T11:27:25",
"upload_time_iso_8601": "2024-12-18T11:27:25.097304Z",
"url": "https://files.pythonhosted.org/packages/a2/d1/f2dfe1a2a637ce6800b799aa086d079998959f6f1215eb4497966efd2274/pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d39e06fcbcc1c785daa3160ccf6c1c38fea31f5754b756e34b65f74e99780b5",
"md5": "91b36b1f4e86cdd19052c72fca7d2764",
"sha256": "e2bb4d3e5873c37bb3dd58714d4cd0b0e6238cebc4177ac8fe878f8b3aa8e74c"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "91b36b1f4e86cdd19052c72fca7d2764",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2037695,
"upload_time": "2024-12-18T11:27:28",
"upload_time_iso_8601": "2024-12-18T11:27:28.656579Z",
"url": "https://files.pythonhosted.org/packages/7d/39/e06fcbcc1c785daa3160ccf6c1c38fea31f5754b756e34b65f74e99780b5/pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a6761291ee98e07f0650eb756d44998214231f50751ba7e13f4f325d95249ab",
"md5": "6979ab1ad846dfdc4434ecd52f8336bf",
"sha256": "280d219beebb0752699480fe8f1dc61ab6615c2046d76b7ab7ee38858de0a4e7"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6979ab1ad846dfdc4434ecd52f8336bf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2741662,
"upload_time": "2024-12-18T11:27:30",
"upload_time_iso_8601": "2024-12-18T11:27:30.798647Z",
"url": "https://files.pythonhosted.org/packages/7a/67/61291ee98e07f0650eb756d44998214231f50751ba7e13f4f325d95249ab/pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "32903b15e31b88ca39e9e626630b4c4a1f5a0dfd09076366f4219429e6786076",
"md5": "74a358a5b477007383d3ced8b46025b5",
"sha256": "47956ae78b6422cbd46f772f1746799cbb862de838fd8d1fbd34a82e05b0983a"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "74a358a5b477007383d3ced8b46025b5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1993370,
"upload_time": "2024-12-18T11:27:33",
"upload_time_iso_8601": "2024-12-18T11:27:33.692338Z",
"url": "https://files.pythonhosted.org/packages/32/90/3b15e31b88ca39e9e626630b4c4a1f5a0dfd09076366f4219429e6786076/pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff83c06d333ee3a67e2e13e07794995c1535565132940715931c1c43bfc85b11",
"md5": "c21dd6a1c7e4d6f69e75f2de91f57bdc",
"sha256": "14d4a5c49d2f009d62a2a7140d3064f686d17a5d1a268bc641954ba181880236"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c21dd6a1c7e4d6f69e75f2de91f57bdc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1996813,
"upload_time": "2024-12-18T11:27:37",
"upload_time_iso_8601": "2024-12-18T11:27:37.111376Z",
"url": "https://files.pythonhosted.org/packages/ff/83/c06d333ee3a67e2e13e07794995c1535565132940715931c1c43bfc85b11/pydantic_core-2.27.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cf789be1c8deb6e22618a74f0ca0d933fdcb8baa254753b26b25ad3acff8f74",
"md5": "81cfdf2661a4bfb2c48af398de8eb3b3",
"sha256": "337b443af21d488716f8d0b6164de833e788aa6bd7e3a39c005febc1284f4962"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "81cfdf2661a4bfb2c48af398de8eb3b3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2005287,
"upload_time": "2024-12-18T11:27:40",
"upload_time_iso_8601": "2024-12-18T11:27:40.566088Z",
"url": "https://files.pythonhosted.org/packages/7c/f7/89be1c8deb6e22618a74f0ca0d933fdcb8baa254753b26b25ad3acff8f74/pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b77d8eb3e23206c00ef7feee17b83a4ffa0a623eb1a9d382e56e4aa46fd15ff2",
"md5": "6c266c4b4028267370194b70dc462cef",
"sha256": "03d0f86ea3184a12f41a2d23f7ccb79cdb5a18e06993f8a45baa8dfec746f0e9"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "6c266c4b4028267370194b70dc462cef",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2128414,
"upload_time": "2024-12-18T11:27:43",
"upload_time_iso_8601": "2024-12-18T11:27:43.757299Z",
"url": "https://files.pythonhosted.org/packages/b7/7d/8eb3e23206c00ef7feee17b83a4ffa0a623eb1a9d382e56e4aa46fd15ff2/pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e99fe80f3ff8dd71a3ea15763878d464476e6cb0a2db95ff1c5c554133b6b83",
"md5": "631f90d6f73fc37ca16609dd69c4b9b4",
"sha256": "7041c36f5680c6e0f08d922aed302e98b3745d97fe1589db0a3eebf6624523af"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "631f90d6f73fc37ca16609dd69c4b9b4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2155301,
"upload_time": "2024-12-18T11:27:47",
"upload_time_iso_8601": "2024-12-18T11:27:47.360959Z",
"url": "https://files.pythonhosted.org/packages/4e/99/fe80f3ff8dd71a3ea15763878d464476e6cb0a2db95ff1c5c554133b6b83/pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ba3e50460b9a5789ca1451b70d4f52546fa9e2b420ba3bfa6100105c0559238",
"md5": "5d7e6285bd7376884cb59a310db25e3d",
"sha256": "50a68f3e3819077be2c98110c1f9dcb3817e93f267ba80a2c05bb4f8799e2ff4"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "5d7e6285bd7376884cb59a310db25e3d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1816685,
"upload_time": "2024-12-18T11:27:50",
"upload_time_iso_8601": "2024-12-18T11:27:50.508629Z",
"url": "https://files.pythonhosted.org/packages/2b/a3/e50460b9a5789ca1451b70d4f52546fa9e2b420ba3bfa6100105c0559238/pydantic_core-2.27.2-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "574ca8838731cb0f2c2a39d3535376466de6049034d7b239c0202a64aaa05533",
"md5": "9a00fdca1ca6d431bc9bf5d161b9e076",
"sha256": "e0fd26b16394ead34a424eecf8a31a1f5137094cabe84a1bcb10fa6ba39d3d31"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "9a00fdca1ca6d431bc9bf5d161b9e076",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1982876,
"upload_time": "2024-12-18T11:27:53",
"upload_time_iso_8601": "2024-12-18T11:27:53.540379Z",
"url": "https://files.pythonhosted.org/packages/57/4c/a8838731cb0f2c2a39d3535376466de6049034d7b239c0202a64aaa05533/pydantic_core-2.27.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c289f3450af9d09d44eea1f2c369f49e8f181d742f28220f88cc4dfaae91ea6e",
"md5": "6b2341a465b12afc204a41b5d7ca06ea",
"sha256": "8e10c99ef58cfdf2a66fc15d66b16c4a04f62bca39db589ae8cba08bc55331bc"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "6b2341a465b12afc204a41b5d7ca06ea",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1893421,
"upload_time": "2024-12-18T11:27:55",
"upload_time_iso_8601": "2024-12-18T11:27:55.409242Z",
"url": "https://files.pythonhosted.org/packages/c2/89/f3450af9d09d44eea1f2c369f49e8f181d742f28220f88cc4dfaae91ea6e/pydantic_core-2.27.2-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ee371fe85af2021f3f386da42d291412e5baf6ce7716bd7101ea49c810eda90",
"md5": "2ac84941f995deb89cf72e86c66806c7",
"sha256": "26f32e0adf166a84d0cb63be85c562ca8a6fa8de28e5f0d92250c6b7e9e2aff7"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2ac84941f995deb89cf72e86c66806c7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1814998,
"upload_time": "2024-12-18T11:27:57",
"upload_time_iso_8601": "2024-12-18T11:27:57.252683Z",
"url": "https://files.pythonhosted.org/packages/9e/e3/71fe85af2021f3f386da42d291412e5baf6ce7716bd7101ea49c810eda90/pydantic_core-2.27.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a63c724039e0d848fd69dbf5806894e26479577316c6f0f112bacaf67aa889ac",
"md5": "fd022bc4391a26c563075f272abeaef5",
"sha256": "8c19d1ea0673cd13cc2f872f6c9ab42acc4e4f492a7ca9d3795ce2b112dd7e15"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fd022bc4391a26c563075f272abeaef5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1826167,
"upload_time": "2024-12-18T11:27:59",
"upload_time_iso_8601": "2024-12-18T11:27:59.146865Z",
"url": "https://files.pythonhosted.org/packages/a6/3c/724039e0d848fd69dbf5806894e26479577316c6f0f112bacaf67aa889ac/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b5b1b29e8c1fb5f3199a9a57c1452004ff39f494bbe9bdbe9a81e18172e40d3",
"md5": "d21b3bab38f03c3ad23602e5f87240a2",
"sha256": "5e68c4446fe0810e959cdff46ab0a41ce2f2c86d227d96dc3847af0ba7def306"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d21b3bab38f03c3ad23602e5f87240a2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1865071,
"upload_time": "2024-12-18T11:28:02",
"upload_time_iso_8601": "2024-12-18T11:28:02.625952Z",
"url": "https://files.pythonhosted.org/packages/2b/5b/1b29e8c1fb5f3199a9a57c1452004ff39f494bbe9bdbe9a81e18172e40d3/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "896c3985203863d76bb7d7266e36970d7e3b6385148c18a68cc8915fd8c84d57",
"md5": "651c2ee0e6eb005f56e0afa62bd7fd6c",
"sha256": "d9640b0059ff4f14d1f37321b94061c6db164fbe49b334b31643e0528d100d99"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "651c2ee0e6eb005f56e0afa62bd7fd6c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2036244,
"upload_time": "2024-12-18T11:28:04",
"upload_time_iso_8601": "2024-12-18T11:28:04.442650Z",
"url": "https://files.pythonhosted.org/packages/89/6c/3985203863d76bb7d7266e36970d7e3b6385148c18a68cc8915fd8c84d57/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e41f15316858a246b5d723f7d7f599f79e37493b2e84bfc789e58d88c209f8a",
"md5": "885980b3890b112bdfeb32d1eee285af",
"sha256": "40d02e7d45c9f8af700f3452f329ead92da4c5f4317ca9b896de7ce7199ea459"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "885980b3890b112bdfeb32d1eee285af",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2737470,
"upload_time": "2024-12-18T11:28:07",
"upload_time_iso_8601": "2024-12-18T11:28:07.679661Z",
"url": "https://files.pythonhosted.org/packages/0e/41/f15316858a246b5d723f7d7f599f79e37493b2e84bfc789e58d88c209f8a/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a87cb860618c25678bbd6d1d99dbdfdf0510ccb50790099b963ff78a124b754f",
"md5": "7f9319ff7a9ecc373fd43d941d33d001",
"sha256": "1c1fd185014191700554795c99b347d64f2bb637966c4cfc16998a0ca700d048"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7f9319ff7a9ecc373fd43d941d33d001",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1992291,
"upload_time": "2024-12-18T11:28:10",
"upload_time_iso_8601": "2024-12-18T11:28:10.297706Z",
"url": "https://files.pythonhosted.org/packages/a8/7c/b860618c25678bbd6d1d99dbdfdf0510ccb50790099b963ff78a124b754f/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf7342c3742a391eccbeab39f15213ecda3104ae8682ba3c0c28069fbcb8c10d",
"md5": "2b1edbc3bde7269178cb065dd47a9312",
"sha256": "d81d2068e1c1228a565af076598f9e7451712700b673de8f502f0334f281387d"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "2b1edbc3bde7269178cb065dd47a9312",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1994613,
"upload_time": "2024-12-18T11:28:13",
"upload_time_iso_8601": "2024-12-18T11:28:13.362423Z",
"url": "https://files.pythonhosted.org/packages/bf/73/42c3742a391eccbeab39f15213ecda3104ae8682ba3c0c28069fbcb8c10d/pydantic_core-2.27.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "947a941e89096d1175d56f59340f3a8ebaf20762fef222c298ea96d36a6328c5",
"md5": "03812fa7a2149e95e657c185ee18c17a",
"sha256": "1a4207639fb02ec2dbb76227d7c751a20b1a6b4bc52850568e52260cae64ca3b"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "03812fa7a2149e95e657c185ee18c17a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2002355,
"upload_time": "2024-12-18T11:28:16",
"upload_time_iso_8601": "2024-12-18T11:28:16.587712Z",
"url": "https://files.pythonhosted.org/packages/94/7a/941e89096d1175d56f59340f3a8ebaf20762fef222c298ea96d36a6328c5/pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e952359937a73d49e336a5a19848713555605d4d8d6940c3ec6c6c0ca4dcf25",
"md5": "7d3ec690ab186f364823221262a6f2a2",
"sha256": "3de3ce3c9ddc8bbd88f6e0e304dea0e66d843ec9de1b0042b0911c1663ffd474"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "7d3ec690ab186f364823221262a6f2a2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2126661,
"upload_time": "2024-12-18T11:28:18",
"upload_time_iso_8601": "2024-12-18T11:28:18.407688Z",
"url": "https://files.pythonhosted.org/packages/6e/95/2359937a73d49e336a5a19848713555605d4d8d6940c3ec6c6c0ca4dcf25/pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b4cca02b7bdb6012a1adef21a50625b14f43ed4d11f1fc237f9d7490aa5078c",
"md5": "e9f749f1b4b2f5414b999ab7c3a54464",
"sha256": "30c5f68ded0c36466acede341551106821043e9afaad516adfb6e8fa80a4e6a6"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e9f749f1b4b2f5414b999ab7c3a54464",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2153261,
"upload_time": "2024-12-18T11:28:21",
"upload_time_iso_8601": "2024-12-18T11:28:21.471333Z",
"url": "https://files.pythonhosted.org/packages/2b/4c/ca02b7bdb6012a1adef21a50625b14f43ed4d11f1fc237f9d7490aa5078c/pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "729da241db83f973049a1092a079272ffe2e3e82e98561ef6214ab53fe53b1c7",
"md5": "52a2ac9c25f9023e027ec4af3283c670",
"sha256": "c70c26d2c99f78b125a3459f8afe1aed4d9687c24fd677c6a4436bc042e50d6c"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "52a2ac9c25f9023e027ec4af3283c670",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1812361,
"upload_time": "2024-12-18T11:28:23",
"upload_time_iso_8601": "2024-12-18T11:28:23.530270Z",
"url": "https://files.pythonhosted.org/packages/72/9d/a241db83f973049a1092a079272ffe2e3e82e98561ef6214ab53fe53b1c7/pydantic_core-2.27.2-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8ef013f07248041b74abd48a385e2110aa3a9bbfef0fbd97d4e6d07d2f5b89a",
"md5": "abc96ab6b753b3f395b64425a5a04842",
"sha256": "08e125dbdc505fa69ca7d9c499639ab6407cfa909214d500897d02afb816e7cc"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "abc96ab6b753b3f395b64425a5a04842",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1982484,
"upload_time": "2024-12-18T11:28:25",
"upload_time_iso_8601": "2024-12-18T11:28:25.391994Z",
"url": "https://files.pythonhosted.org/packages/e8/ef/013f07248041b74abd48a385e2110aa3a9bbfef0fbd97d4e6d07d2f5b89a/pydantic_core-2.27.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "101c16b3a3e3398fd29dca77cea0a1d998d6bde3902fa2706985191e2313cc76",
"md5": "3ff7f0afff30336e5bea12c2d863ac0f",
"sha256": "26f0d68d4b235a2bae0c3fc585c585b4ecc51382db0e3ba402a22cbc440915e4"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "3ff7f0afff30336e5bea12c2d863ac0f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1867102,
"upload_time": "2024-12-18T11:28:28",
"upload_time_iso_8601": "2024-12-18T11:28:28.593678Z",
"url": "https://files.pythonhosted.org/packages/10/1c/16b3a3e3398fd29dca77cea0a1d998d6bde3902fa2706985191e2313cc76/pydantic_core-2.27.2-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d67451c8a5482ca447871c93e142d9d4a92ead74de6c8dc5e66733e22c9bba89",
"md5": "30c37db441a0d84c9edf287f0f48729e",
"sha256": "9e0c8cfefa0ef83b4da9588448b6d8d2a2bf1a53c3f1ae5fca39eb3061e2f0b0"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "30c37db441a0d84c9edf287f0f48729e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1893127,
"upload_time": "2024-12-18T11:28:30",
"upload_time_iso_8601": "2024-12-18T11:28:30.346349Z",
"url": "https://files.pythonhosted.org/packages/d6/74/51c8a5482ca447871c93e142d9d4a92ead74de6c8dc5e66733e22c9bba89/pydantic_core-2.27.2-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3f3c97e80721735868313c58b89d2de85fa80fe8dfeeed84dc51598b92a135e",
"md5": "29984844af304be869790a0e4ef42e92",
"sha256": "83097677b8e3bd7eaa6775720ec8e0405f1575015a463285a92bfdfe254529ef"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "29984844af304be869790a0e4ef42e92",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1811340,
"upload_time": "2024-12-18T11:28:32",
"upload_time_iso_8601": "2024-12-18T11:28:32.521509Z",
"url": "https://files.pythonhosted.org/packages/d3/f3/c97e80721735868313c58b89d2de85fa80fe8dfeeed84dc51598b92a135e/pydantic_core-2.27.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e91840ec1375e686dbae1bd80a9e46c26a1e0083e1186abc610efa3d9a36180",
"md5": "e1c6ff4da91c9db5de8ec1eeac497b36",
"sha256": "172fce187655fece0c90d90a678424b013f8fbb0ca8b036ac266749c09438cb7"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e1c6ff4da91c9db5de8ec1eeac497b36",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1822900,
"upload_time": "2024-12-18T11:28:34",
"upload_time_iso_8601": "2024-12-18T11:28:34.507401Z",
"url": "https://files.pythonhosted.org/packages/9e/91/840ec1375e686dbae1bd80a9e46c26a1e0083e1186abc610efa3d9a36180/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6314240bc96025035500c18adc149aa6ffdf1a0062a4b525c932065ceb4d868",
"md5": "310fe393fa4da3c1f0af9b74ed3f5816",
"sha256": "519f29f5213271eeeeb3093f662ba2fd512b91c5f188f3bb7b27bc5973816934"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "310fe393fa4da3c1f0af9b74ed3f5816",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1869177,
"upload_time": "2024-12-18T11:28:36",
"upload_time_iso_8601": "2024-12-18T11:28:36.488864Z",
"url": "https://files.pythonhosted.org/packages/f6/31/4240bc96025035500c18adc149aa6ffdf1a0062a4b525c932065ceb4d868/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa2002fbaadb7808be578317015c462655c317a77a7c8f0ef274bc016a784c54",
"md5": "53cc220d2e7911b875a71086bceb3ef3",
"sha256": "05e3a55d124407fffba0dd6b0c0cd056d10e983ceb4e5dbd10dda135c31071d6"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "53cc220d2e7911b875a71086bceb3ef3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2038046,
"upload_time": "2024-12-18T11:28:39",
"upload_time_iso_8601": "2024-12-18T11:28:39.409211Z",
"url": "https://files.pythonhosted.org/packages/fa/20/02fbaadb7808be578317015c462655c317a77a7c8f0ef274bc016a784c54/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "06867f306b904e6c9eccf0668248b3f272090e49c275bc488a7b88b0823444a4",
"md5": "281bed899b3acf3127d3d489f5797d59",
"sha256": "9c3ed807c7b91de05e63930188f19e921d1fe90de6b4f5cd43ee7fcc3525cb8c"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "281bed899b3acf3127d3d489f5797d59",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2685386,
"upload_time": "2024-12-18T11:28:41",
"upload_time_iso_8601": "2024-12-18T11:28:41.221721Z",
"url": "https://files.pythonhosted.org/packages/06/86/7f306b904e6c9eccf0668248b3f272090e49c275bc488a7b88b0823444a4/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8df049129b27c43396581a635d8710dae54a791b17dfc50c70164866bbf865e3",
"md5": "1c2ddb46f2dbc58179fc1244a08c26eb",
"sha256": "6fb4aadc0b9a0c063206846d603b92030eb6f03069151a625667f982887153e2"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1c2ddb46f2dbc58179fc1244a08c26eb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1997060,
"upload_time": "2024-12-18T11:28:44",
"upload_time_iso_8601": "2024-12-18T11:28:44.709332Z",
"url": "https://files.pythonhosted.org/packages/8d/f0/49129b27c43396581a635d8710dae54a791b17dfc50c70164866bbf865e3/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d0f943b4af7cd416c477fd40b187036c4f89b416a33d3cc0ab7b82708a667aa",
"md5": "ab6bb140d3f876750085194d7fd0cb6c",
"sha256": "28ccb213807e037460326424ceb8b5245acb88f32f3d2777427476e1b32c48c4"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ab6bb140d3f876750085194d7fd0cb6c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2004870,
"upload_time": "2024-12-18T11:28:46",
"upload_time_iso_8601": "2024-12-18T11:28:46.839817Z",
"url": "https://files.pythonhosted.org/packages/0d/0f/943b4af7cd416c477fd40b187036c4f89b416a33d3cc0ab7b82708a667aa/pydantic_core-2.27.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3540aea70b5b1a63911c53a4c8117c0a828d6790483f858041f47bab0b779f44",
"md5": "ad413d18acde0bd251ad712b5cfd2b77",
"sha256": "de3cd1899e2c279b140adde9357c4495ed9d47131b4a4eaff9052f23398076b3"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ad413d18acde0bd251ad712b5cfd2b77",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1999822,
"upload_time": "2024-12-18T11:28:48",
"upload_time_iso_8601": "2024-12-18T11:28:48.896937Z",
"url": "https://files.pythonhosted.org/packages/35/40/aea70b5b1a63911c53a4c8117c0a828d6790483f858041f47bab0b779f44/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2b3807b94fd337d58effc5498fd1a7a4d9d59af4133e83e32ae39a96fddec9d",
"md5": "5a46ec2ba7bde3d7ce33b9f78ee57a90",
"sha256": "220f892729375e2d736b97d0e51466252ad84c51857d4d15f5e9692f9ef12be4"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "5a46ec2ba7bde3d7ce33b9f78ee57a90",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2130364,
"upload_time": "2024-12-18T11:28:50",
"upload_time_iso_8601": "2024-12-18T11:28:50.755486Z",
"url": "https://files.pythonhosted.org/packages/f2/b3/807b94fd337d58effc5498fd1a7a4d9d59af4133e83e32ae39a96fddec9d/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fcdf791c827cd4ee6efd59248dca9369fb35e80a9484462c33c6649a8d02b565",
"md5": "71a58208014b7326bb7a649c994d050a",
"sha256": "a0fcd29cd6b4e74fe8ddd2c90330fd8edf2e30cb52acda47f06dd615ae72da57"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "71a58208014b7326bb7a649c994d050a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2158303,
"upload_time": "2024-12-18T11:28:54",
"upload_time_iso_8601": "2024-12-18T11:28:54.122868Z",
"url": "https://files.pythonhosted.org/packages/fc/df/791c827cd4ee6efd59248dca9369fb35e80a9484462c33c6649a8d02b565/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b674e197c300976af185b7cef4c02203e175fb127e414125916bf1128b639a9",
"md5": "4dc3a7c331e7437fc84f34556d0e2bd1",
"sha256": "1e2cb691ed9834cd6a8be61228471d0a503731abfb42f82458ff27be7b2186fc"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "4dc3a7c331e7437fc84f34556d0e2bd1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1834064,
"upload_time": "2024-12-18T11:28:56",
"upload_time_iso_8601": "2024-12-18T11:28:56.074743Z",
"url": "https://files.pythonhosted.org/packages/9b/67/4e197c300976af185b7cef4c02203e175fb127e414125916bf1128b639a9/pydantic_core-2.27.2-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1feacd7209a889163b8dcca139fe32b9687dd05249161a3edda62860430457a5",
"md5": "636dd11a2918251a6174d2e3db7f5fc8",
"sha256": "cc3f1a99a4f4f9dd1de4fe0312c114e740b5ddead65bb4102884b384c15d8bc9"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "636dd11a2918251a6174d2e3db7f5fc8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1989046,
"upload_time": "2024-12-18T11:28:58",
"upload_time_iso_8601": "2024-12-18T11:28:58.107550Z",
"url": "https://files.pythonhosted.org/packages/1f/ea/cd7209a889163b8dcca139fe32b9687dd05249161a3edda62860430457a5/pydantic_core-2.27.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc49c54baab2f4658c26ac633d798dab66b4c3a9bbf47cff5284e9c182f4137a",
"md5": "e86831ac9f7fb4721096fad6fb9d17d2",
"sha256": "3911ac9284cd8a1792d3cb26a2da18f3ca26c6908cc434a18f730dc0db7bfa3b"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "e86831ac9f7fb4721096fad6fb9d17d2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1885092,
"upload_time": "2024-12-18T11:29:01",
"upload_time_iso_8601": "2024-12-18T11:29:01.335013Z",
"url": "https://files.pythonhosted.org/packages/bc/49/c54baab2f4658c26ac633d798dab66b4c3a9bbf47cff5284e9c182f4137a/pydantic_core-2.27.2-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41b19bc383f48f8002f99104e3acff6cba1231b29ef76cfa45d1506a5cad1f84",
"md5": "08726af42a557eadcf5af968fd76a02d",
"sha256": "7d14bd329640e63852364c306f4d23eb744e0f8193148d4044dd3dacdaacbd8b"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "08726af42a557eadcf5af968fd76a02d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1892709,
"upload_time": "2024-12-18T11:29:03",
"upload_time_iso_8601": "2024-12-18T11:29:03.193857Z",
"url": "https://files.pythonhosted.org/packages/41/b1/9bc383f48f8002f99104e3acff6cba1231b29ef76cfa45d1506a5cad1f84/pydantic_core-2.27.2-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "106ce62b8657b834f3eb2961b49ec8e301eb99946245e70bf42c8817350cbefc",
"md5": "38306e0358cc64382d2e0362ae55d820",
"sha256": "82f91663004eb8ed30ff478d77c4d1179b3563df6cdb15c0817cd1cdaf34d154"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "38306e0358cc64382d2e0362ae55d820",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1811273,
"upload_time": "2024-12-18T11:29:05",
"upload_time_iso_8601": "2024-12-18T11:29:05.306117Z",
"url": "https://files.pythonhosted.org/packages/10/6c/e62b8657b834f3eb2961b49ec8e301eb99946245e70bf42c8817350cbefc/pydantic_core-2.27.2-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba1552cfe49c8c986e081b863b102d6b859d9defc63446b642ccbbb3742bf371",
"md5": "3351d508d184dbd22c3c03457638b185",
"sha256": "71b24c7d61131bb83df10cc7e687433609963a944ccf45190cfc21e0887b08c9"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3351d508d184dbd22c3c03457638b185",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1823027,
"upload_time": "2024-12-18T11:29:07",
"upload_time_iso_8601": "2024-12-18T11:29:07.294367Z",
"url": "https://files.pythonhosted.org/packages/ba/15/52cfe49c8c986e081b863b102d6b859d9defc63446b642ccbbb3742bf371/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b11cb6f402cfc18ec0024120602bdbcebc7bdd5b856528c013bd4d13865ca473",
"md5": "df90c4c603d3b35250f04051355eb6bb",
"sha256": "fa8e459d4954f608fa26116118bb67f56b93b209c39b008277ace29937453dc9"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "df90c4c603d3b35250f04051355eb6bb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1868888,
"upload_time": "2024-12-18T11:29:09",
"upload_time_iso_8601": "2024-12-18T11:29:09.249842Z",
"url": "https://files.pythonhosted.org/packages/b1/1c/b6f402cfc18ec0024120602bdbcebc7bdd5b856528c013bd4d13865ca473/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd7b8cb75b66ac37bc2975a3b7de99f3c6f355fcc4d89820b61dffa8f1e81677",
"md5": "2fd2fdd3e666e4696c24bf3b8344884a",
"sha256": "ce8918cbebc8da707ba805b7fd0b382816858728ae7fe19a942080c24e5b7cd1"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2fd2fdd3e666e4696c24bf3b8344884a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2037738,
"upload_time": "2024-12-18T11:29:11",
"upload_time_iso_8601": "2024-12-18T11:29:11.230752Z",
"url": "https://files.pythonhosted.org/packages/bd/7b/8cb75b66ac37bc2975a3b7de99f3c6f355fcc4d89820b61dffa8f1e81677/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8f1786d8fe78970a06f61df22cba58e365ce304bf9b9f46cc71c8c424e0c334",
"md5": "c61ca64b4c4e678448aa603474d90ee4",
"sha256": "eda3f5c2a021bbc5d976107bb302e0131351c2ba54343f8a496dc8783d3d3a6a"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c61ca64b4c4e678448aa603474d90ee4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2685138,
"upload_time": "2024-12-18T11:29:16",
"upload_time_iso_8601": "2024-12-18T11:29:16.396074Z",
"url": "https://files.pythonhosted.org/packages/c8/f1/786d8fe78970a06f61df22cba58e365ce304bf9b9f46cc71c8c424e0c334/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a674d12b2cd841d8724dc8ffb13fc5cef86566a53ed358103150209ecd5d1999",
"md5": "6378cb0e25ed955b0c0d663c03edb71e",
"sha256": "bd8086fa684c4775c27f03f062cbb9eaa6e17f064307e86b21b9e0abc9c0f02e"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6378cb0e25ed955b0c0d663c03edb71e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1997025,
"upload_time": "2024-12-18T11:29:20",
"upload_time_iso_8601": "2024-12-18T11:29:20.250328Z",
"url": "https://files.pythonhosted.org/packages/a6/74/d12b2cd841d8724dc8ffb13fc5cef86566a53ed358103150209ecd5d1999/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a06e940bcd631bc4d9a06c9539b51f070b66e8f370ed0933f392db6ff350d873",
"md5": "4ef9e4f41a1cf9476d83715ea854f3fd",
"sha256": "8d9b3388db186ba0c099a6d20f0604a44eabdeef1777ddd94786cdae158729e4"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "4ef9e4f41a1cf9476d83715ea854f3fd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2004633,
"upload_time": "2024-12-18T11:29:23",
"upload_time_iso_8601": "2024-12-18T11:29:23.877541Z",
"url": "https://files.pythonhosted.org/packages/a0/6e/940bcd631bc4d9a06c9539b51f070b66e8f370ed0933f392db6ff350d873/pydantic_core-2.27.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50cca46b34f1708d82498c227d5d80ce615b2dd502ddcfd8376fc14a36655af1",
"md5": "3b61c6d723ae8c5007c2d02eec2acffd",
"sha256": "7a66efda2387de898c8f38c0cf7f14fca0b51a8ef0b24bfea5849f1b3c95af27"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "3b61c6d723ae8c5007c2d02eec2acffd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1999404,
"upload_time": "2024-12-18T11:29:25",
"upload_time_iso_8601": "2024-12-18T11:29:25.872611Z",
"url": "https://files.pythonhosted.org/packages/50/cc/a46b34f1708d82498c227d5d80ce615b2dd502ddcfd8376fc14a36655af1/pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca2dc365cfa930ed23bc58c41463bae347d1005537dc8db79e998af8ba28d35e",
"md5": "0a688c95062f352b6ca25c2e22126c18",
"sha256": "18a101c168e4e092ab40dbc2503bdc0f62010e95d292b27827871dc85450d7ee"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "0a688c95062f352b6ca25c2e22126c18",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2130130,
"upload_time": "2024-12-18T11:29:29",
"upload_time_iso_8601": "2024-12-18T11:29:29.252486Z",
"url": "https://files.pythonhosted.org/packages/ca/2d/c365cfa930ed23bc58c41463bae347d1005537dc8db79e998af8ba28d35e/pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4d7eb64d015c350b7cdb371145b54d96c919d4db516817f31cd1c650cae3b21",
"md5": "a6ac1ae0e5c2dad9a393bfd266860555",
"sha256": "ba5dd002f88b78a4215ed2f8ddbdf85e8513382820ba15ad5ad8955ce0ca19a1"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a6ac1ae0e5c2dad9a393bfd266860555",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2157946,
"upload_time": "2024-12-18T11:29:31",
"upload_time_iso_8601": "2024-12-18T11:29:31.338111Z",
"url": "https://files.pythonhosted.org/packages/f4/d7/eb64d015c350b7cdb371145b54d96c919d4db516817f31cd1c650cae3b21/pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a499bddde3ddde76c03b65dfd5a66ab436c4e58ffc42927d4ff1198ffbf96f5f",
"md5": "c39780a7938bd25782352bb3d4a29dcc",
"sha256": "1ebaf1d0481914d004a573394f4be3a7616334be70261007e47c2a6fe7e50130"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "c39780a7938bd25782352bb3d4a29dcc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1834387,
"upload_time": "2024-12-18T11:29:33",
"upload_time_iso_8601": "2024-12-18T11:29:33.481595Z",
"url": "https://files.pythonhosted.org/packages/a4/99/bddde3ddde76c03b65dfd5a66ab436c4e58ffc42927d4ff1198ffbf96f5f/pydantic_core-2.27.2-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "714782b5e846e01b26ac6f1893d3c5f9f3a2eb6ba79be26eef0b759b4fe72946",
"md5": "fad7e4350e1f0af6fc1fbd1859cd0617",
"sha256": "953101387ecf2f5652883208769a79e48db18c6df442568a0b5ccd8c2723abee"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "fad7e4350e1f0af6fc1fbd1859cd0617",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1990453,
"upload_time": "2024-12-18T11:29:35",
"upload_time_iso_8601": "2024-12-18T11:29:35.533672Z",
"url": "https://files.pythonhosted.org/packages/71/47/82b5e846e01b26ac6f1893d3c5f9f3a2eb6ba79be26eef0b759b4fe72946/pydantic_core-2.27.2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "51b2b2b50d5ecf21acf870190ae5d093602d95f66c9c31f9d5de6062eb329ad1",
"md5": "21a6b41aa33b03cbe1d534ba5760d30d",
"sha256": "ac4dbfd1691affb8f48c2c13241a2e3b60ff23247cbcf981759c768b6633cf8b"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "21a6b41aa33b03cbe1d534ba5760d30d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1885186,
"upload_time": "2024-12-18T11:29:37",
"upload_time_iso_8601": "2024-12-18T11:29:37.649549Z",
"url": "https://files.pythonhosted.org/packages/51/b2/b2b50d5ecf21acf870190ae5d093602d95f66c9c31f9d5de6062eb329ad1/pydantic_core-2.27.2-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "435313e9917fc69c0a4aea06fd63ed6a8d6cda9cf140ca9584d49c1650b0ef5e",
"md5": "95ec7c511e97a1e32cf40f100b10856f",
"sha256": "d3e8d504bdd3f10835468f29008d72fc8359d95c9c415ce6e767203db6127506"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "95ec7c511e97a1e32cf40f100b10856f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1899595,
"upload_time": "2024-12-18T11:29:40",
"upload_time_iso_8601": "2024-12-18T11:29:40.887679Z",
"url": "https://files.pythonhosted.org/packages/43/53/13e9917fc69c0a4aea06fd63ed6a8d6cda9cf140ca9584d49c1650b0ef5e/pydantic_core-2.27.2-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f42026c549249769ed84877f862f7bb93f89a6ee08b4bee1ed8781616b7fbb5e",
"md5": "e7c36111aede3b9d093ee85b7c0a0772",
"sha256": "521eb9b7f036c9b6187f0b47318ab0d7ca14bd87f776240b90b21c1f4f149320"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e7c36111aede3b9d093ee85b7c0a0772",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1775010,
"upload_time": "2024-12-18T11:29:44",
"upload_time_iso_8601": "2024-12-18T11:29:44.823596Z",
"url": "https://files.pythonhosted.org/packages/f4/20/26c549249769ed84877f862f7bb93f89a6ee08b4bee1ed8781616b7fbb5e/pydantic_core-2.27.2-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "35eb8234e05452d92d2b102ffa1b56d801c3567e628fdc63f02080fdfc68fd5e",
"md5": "8eb2bd374ef979aba97e4de57ee61615",
"sha256": "85210c4d99a0114f5a9481b44560d7d1e35e32cc5634c656bc48e590b669b145"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8eb2bd374ef979aba97e4de57ee61615",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1830727,
"upload_time": "2024-12-18T11:29:46",
"upload_time_iso_8601": "2024-12-18T11:29:46.904827Z",
"url": "https://files.pythonhosted.org/packages/35/eb/8234e05452d92d2b102ffa1b56d801c3567e628fdc63f02080fdfc68fd5e/pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8fdf59f915c8b929d5f61e5a46accf748a87110ba145156f9326d1a7d28912b2",
"md5": "730e8621ceb558f069fb82e443afab3f",
"sha256": "d716e2e30c6f140d7560ef1538953a5cd1a87264c737643d481f2779fc247fe1"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "730e8621ceb558f069fb82e443afab3f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1868393,
"upload_time": "2024-12-18T11:29:49",
"upload_time_iso_8601": "2024-12-18T11:29:49.098514Z",
"url": "https://files.pythonhosted.org/packages/8f/df/59f915c8b929d5f61e5a46accf748a87110ba145156f9326d1a7d28912b2/pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d55281cf4071dca654d485c277c581db368b0c95b2b883f4d7b736ab54f72ddf",
"md5": "cd05ce833b443e8b37c1b5dccfc4ff37",
"sha256": "f66d89ba397d92f840f8654756196d93804278457b5fbede59598a1f9f90b228"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "cd05ce833b443e8b37c1b5dccfc4ff37",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2040300,
"upload_time": "2024-12-18T11:29:51",
"upload_time_iso_8601": "2024-12-18T11:29:51.430877Z",
"url": "https://files.pythonhosted.org/packages/d5/52/81cf4071dca654d485c277c581db368b0c95b2b883f4d7b736ab54f72ddf/pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c0005197ce1614f5c08d7a06e1d39d5d8e704dc81971b2719af134b844e2eaf",
"md5": "2b74fa414529e0021f0bf37208030651",
"sha256": "669e193c1c576a58f132e3158f9dfa9662969edb1a250c54d8fa52590045f046"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2b74fa414529e0021f0bf37208030651",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2738785,
"upload_time": "2024-12-18T11:29:55",
"upload_time_iso_8601": "2024-12-18T11:29:55.001790Z",
"url": "https://files.pythonhosted.org/packages/9c/00/05197ce1614f5c08d7a06e1d39d5d8e704dc81971b2719af134b844e2eaf/pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f7a35f19bc495793546825ab160e530330c2afcee2281c02b5ffafd0b32ac05e",
"md5": "49ac3c0fc3c458255cef73fe3ad00d3e",
"sha256": "9fdbe7629b996647b99c01b37f11170a57ae675375b14b8c13b8518b8320ced5"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "49ac3c0fc3c458255cef73fe3ad00d3e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1996493,
"upload_time": "2024-12-18T11:29:57",
"upload_time_iso_8601": "2024-12-18T11:29:57.130505Z",
"url": "https://files.pythonhosted.org/packages/f7/a3/5f19bc495793546825ab160e530330c2afcee2281c02b5ffafd0b32ac05e/pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ede8e0102c2ec153dc3eed88aea03990e1b06cfbca532916b8a48173245afe60",
"md5": "4535563e76d30f595000ee36dd268c1f",
"sha256": "d262606bf386a5ba0b0af3b97f37c83d7011439e3dc1a9298f21efb292e42f1a"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "4535563e76d30f595000ee36dd268c1f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1998544,
"upload_time": "2024-12-18T11:30:00",
"upload_time_iso_8601": "2024-12-18T11:30:00.681065Z",
"url": "https://files.pythonhosted.org/packages/ed/e8/e0102c2ec153dc3eed88aea03990e1b06cfbca532916b8a48173245afe60/pydantic_core-2.27.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fba34be70845b555bd80aaee9f9812a7cf3df81550bce6dadb3cfee9c5d8421d",
"md5": "7a9b2e9eebb5428c5a3b4b82c35183d7",
"sha256": "cabb9bcb7e0d97f74df8646f34fc76fbf793b7f6dc2438517d7a9e50eee4f14d"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "7a9b2e9eebb5428c5a3b4b82c35183d7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2007449,
"upload_time": "2024-12-18T11:30:02",
"upload_time_iso_8601": "2024-12-18T11:30:02.985327Z",
"url": "https://files.pythonhosted.org/packages/fb/a3/4be70845b555bd80aaee9f9812a7cf3df81550bce6dadb3cfee9c5d8421d/pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e39fb779ed2480ba355c054e6d7ea77792467631d674b13d8257085a4bc7dcda",
"md5": "910846f7ce5a2d774fb2083c6807d28d",
"sha256": "d2d63f1215638d28221f664596b1ccb3944f6e25dd18cd3b86b0a4c408d5ebb9"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "910846f7ce5a2d774fb2083c6807d28d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2129460,
"upload_time": "2024-12-18T11:30:06",
"upload_time_iso_8601": "2024-12-18T11:30:06.550822Z",
"url": "https://files.pythonhosted.org/packages/e3/9f/b779ed2480ba355c054e6d7ea77792467631d674b13d8257085a4bc7dcda/pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0f0a6ab0681f6e95260c7fbf552874af7302f2ea37b459f9b7f00698f875492",
"md5": "89933f82ff279271da350bf4331ad20d",
"sha256": "bca101c00bff0adb45a833f8451b9105d9df18accb8743b08107d7ada14bd7da"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "89933f82ff279271da350bf4331ad20d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2159609,
"upload_time": "2024-12-18T11:30:09",
"upload_time_iso_8601": "2024-12-18T11:30:09.428396Z",
"url": "https://files.pythonhosted.org/packages/a0/f0/a6ab0681f6e95260c7fbf552874af7302f2ea37b459f9b7f00698f875492/pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a2be1059506795104349712fbca647b18b3f4a7fd541c099e6259717441e1e0",
"md5": "772fa58406800ecd966ac27cf654d8c9",
"sha256": "f6f8e111843bbb0dee4cb6594cdc73e79b3329b526037ec242a3e49012495b3b"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "772fa58406800ecd966ac27cf654d8c9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1819886,
"upload_time": "2024-12-18T11:30:11",
"upload_time_iso_8601": "2024-12-18T11:30:11.777290Z",
"url": "https://files.pythonhosted.org/packages/8a/2b/e1059506795104349712fbca647b18b3f4a7fd541c099e6259717441e1e0/pydantic_core-2.27.2-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa6ddf49c17f024dfc58db0bacc7b03610058018dd2ea2eaf748ccbada4c3d06",
"md5": "95c5d543111bc5c7fd583a3178496e06",
"sha256": "fd1aea04935a508f62e0d0ef1f5ae968774a32afc306fb8545e06f5ff5cdf3ad"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "95c5d543111bc5c7fd583a3178496e06",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1980773,
"upload_time": "2024-12-18T11:30:14",
"upload_time_iso_8601": "2024-12-18T11:30:14.828806Z",
"url": "https://files.pythonhosted.org/packages/aa/6d/df49c17f024dfc58db0bacc7b03610058018dd2ea2eaf748ccbada4c3d06/pydantic_core-2.27.2-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27973aef1ddb65c5ccd6eda9050036c956ff6ecbfe66cb7eb40f280f121a5bb0",
"md5": "375a12b7fd85cf7e1e83738b5e803627",
"sha256": "c10eb4f1659290b523af58fa7cffb452a61ad6ae5613404519aee4bfbf1df993"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "375a12b7fd85cf7e1e83738b5e803627",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1896475,
"upload_time": "2024-12-18T11:30:18",
"upload_time_iso_8601": "2024-12-18T11:30:18.316181Z",
"url": "https://files.pythonhosted.org/packages/27/97/3aef1ddb65c5ccd6eda9050036c956ff6ecbfe66cb7eb40f280f121a5bb0/pydantic_core-2.27.2-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "add35668da70e373c9904ed2f372cb52c0b996426f302e0dee2e65634c92007d",
"md5": "2ee838ca6648ccfaa8bb067b90f29141",
"sha256": "ef592d4bad47296fb11f96cd7dc898b92e795032b4894dfb4076cfccd43a9308"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2ee838ca6648ccfaa8bb067b90f29141",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1772279,
"upload_time": "2024-12-18T11:30:20",
"upload_time_iso_8601": "2024-12-18T11:30:20.547567Z",
"url": "https://files.pythonhosted.org/packages/ad/d3/5668da70e373c9904ed2f372cb52c0b996426f302e0dee2e65634c92007d/pydantic_core-2.27.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a9ee44b8cb0edf04a2f0a1f6425a65ee089c1d6f9c4c2dcab0209127b6fdfc2",
"md5": "0334abdc30e75c2b91beb3bb0bd8409f",
"sha256": "c61709a844acc6bf0b7dce7daae75195a10aac96a596ea1b776996414791ede4"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0334abdc30e75c2b91beb3bb0bd8409f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1829112,
"upload_time": "2024-12-18T11:30:23",
"upload_time_iso_8601": "2024-12-18T11:30:23.255265Z",
"url": "https://files.pythonhosted.org/packages/8a/9e/e44b8cb0edf04a2f0a1f6425a65ee089c1d6f9c4c2dcab0209127b6fdfc2/pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c901160d7ac700102effe11616e8119e268770f2a2aa5afb935f3ee6832987d",
"md5": "ca7758658adb46ff6cb6a69c767ccb65",
"sha256": "42c5f762659e47fdb7b16956c71598292f60a03aa92f8b6351504359dbdba6cf"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ca7758658adb46ff6cb6a69c767ccb65",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1866780,
"upload_time": "2024-12-18T11:30:25",
"upload_time_iso_8601": "2024-12-18T11:30:25.742978Z",
"url": "https://files.pythonhosted.org/packages/1c/90/1160d7ac700102effe11616e8119e268770f2a2aa5afb935f3ee6832987d/pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee3313983426df09a36d22c15980008f8d9c77674fc319351813b5a2739b70f3",
"md5": "10737d0b4b5025e3bf7ef8b37a3b5c1f",
"sha256": "4c9775e339e42e79ec99c441d9730fccf07414af63eac2f0e48e08fd38a64d76"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "10737d0b4b5025e3bf7ef8b37a3b5c1f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2037943,
"upload_time": "2024-12-18T11:30:28",
"upload_time_iso_8601": "2024-12-18T11:30:28.036287Z",
"url": "https://files.pythonhosted.org/packages/ee/33/13983426df09a36d22c15980008f8d9c77674fc319351813b5a2739b70f3/pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01d7ced164e376f6747e9158c89988c293cd524ab8d215ae4e185e9929655d5c",
"md5": "ced8879016bb06d4bd5861069c5c8051",
"sha256": "57762139821c31847cfb2df63c12f725788bd9f04bc2fb392790959b8f70f118"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ced8879016bb06d4bd5861069c5c8051",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2740492,
"upload_time": "2024-12-18T11:30:30",
"upload_time_iso_8601": "2024-12-18T11:30:30.412963Z",
"url": "https://files.pythonhosted.org/packages/01/d7/ced164e376f6747e9158c89988c293cd524ab8d215ae4e185e9929655d5c/pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b1f3dc6e769d5b7461040778816aab2b00422427bcaa4b56cc89e9c653b2605",
"md5": "f7e3114e8ab239921b1a8df7c22dc16f",
"sha256": "0d1e85068e818c73e048fe28cfc769040bb1f475524f4745a5dc621f75ac7630"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f7e3114e8ab239921b1a8df7c22dc16f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1995714,
"upload_time": "2024-12-18T11:30:34",
"upload_time_iso_8601": "2024-12-18T11:30:34.358886Z",
"url": "https://files.pythonhosted.org/packages/8b/1f/3dc6e769d5b7461040778816aab2b00422427bcaa4b56cc89e9c653b2605/pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07d7a0bd09bc39283530b3f7c27033a814ef254ba3bd0b5cfd040b7abf1fe5da",
"md5": "87f8d44365ef484bc2deca1926e964df",
"sha256": "097830ed52fd9e427942ff3b9bc17fab52913b2f50f2880dc4a5611446606a54"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "87f8d44365ef484bc2deca1926e964df",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1997163,
"upload_time": "2024-12-18T11:30:37",
"upload_time_iso_8601": "2024-12-18T11:30:37.979039Z",
"url": "https://files.pythonhosted.org/packages/07/d7/a0bd09bc39283530b3f7c27033a814ef254ba3bd0b5cfd040b7abf1fe5da/pydantic_core-2.27.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2dbb2db4ad1762e1c5699d9b857eeb41959191980de6feb054e70f93085e1bcd",
"md5": "aac29b351535bca8df0de76f557ba10b",
"sha256": "044a50963a614ecfae59bb1eaf7ea7efc4bc62f49ed594e18fa1e5d953c40e9f"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "aac29b351535bca8df0de76f557ba10b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2005217,
"upload_time": "2024-12-18T11:30:40",
"upload_time_iso_8601": "2024-12-18T11:30:40.367006Z",
"url": "https://files.pythonhosted.org/packages/2d/bb/2db4ad1762e1c5699d9b857eeb41959191980de6feb054e70f93085e1bcd/pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "535f23a5a3e7b8403f8dd8fc8a6f8b49f6b55c7d715b77dcf1f8ae919eeb5628",
"md5": "329f2bd3f016654bafadfb354dab3a52",
"sha256": "4e0b4220ba5b40d727c7f879eac379b822eee5d8fff418e9d3381ee45b3b0362"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "329f2bd3f016654bafadfb354dab3a52",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2127899,
"upload_time": "2024-12-18T11:30:42",
"upload_time_iso_8601": "2024-12-18T11:30:42.737419Z",
"url": "https://files.pythonhosted.org/packages/53/5f/23a5a3e7b8403f8dd8fc8a6f8b49f6b55c7d715b77dcf1f8ae919eeb5628/pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c2aeaa38bb8dd3d89c2f1d8362dd890ee8f3b967330821d03bbe08fa01ce3766",
"md5": "60c241e65eafab8f482b1b6262b21e67",
"sha256": "5e4f4bb20d75e9325cc9696c6802657b58bc1dbbe3022f32cc2b2b632c3fbb96"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "60c241e65eafab8f482b1b6262b21e67",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2155726,
"upload_time": "2024-12-18T11:30:45",
"upload_time_iso_8601": "2024-12-18T11:30:45.279556Z",
"url": "https://files.pythonhosted.org/packages/c2/ae/aa38bb8dd3d89c2f1d8362dd890ee8f3b967330821d03bbe08fa01ce3766/pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "98614f784608cc9e98f70839187117ce840480f768fed5d386f924074bf6213c",
"md5": "2247f03124dbd5039d67fc690e0b6e05",
"sha256": "cca63613e90d001b9f2f9a9ceb276c308bfa2a43fafb75c8031c4f66039e8c6e"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "2247f03124dbd5039d67fc690e0b6e05",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1817219,
"upload_time": "2024-12-18T11:30:47",
"upload_time_iso_8601": "2024-12-18T11:30:47.718521Z",
"url": "https://files.pythonhosted.org/packages/98/61/4f784608cc9e98f70839187117ce840480f768fed5d386f924074bf6213c/pydantic_core-2.27.2-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5782bb16a68e4a1a858bb3768c2c8f1ff8d8978014e16598f001ea29a25bf1d1",
"md5": "5adb39cc9a64593b2f353e641694c8d7",
"sha256": "77d1bca19b0f7021b3a982e6f903dcd5b2b06076def36a652e3907f596e29f67"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "5adb39cc9a64593b2f353e641694c8d7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1985382,
"upload_time": "2024-12-18T11:30:51",
"upload_time_iso_8601": "2024-12-18T11:30:51.871488Z",
"url": "https://files.pythonhosted.org/packages/57/82/bb16a68e4a1a858bb3768c2c8f1ff8d8978014e16598f001ea29a25bf1d1/pydantic_core-2.27.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4672af70981a341500419e67d5cb45abe552a7c74b66326ac8877588488da1ac",
"md5": "8b28e7aa50374d73d899648ed7d286f8",
"sha256": "2bf14caea37e91198329b828eae1618c068dfb8ef17bb33287a7ad4b61ac314e"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "8b28e7aa50374d73d899648ed7d286f8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1891159,
"upload_time": "2024-12-18T11:30:54",
"upload_time_iso_8601": "2024-12-18T11:30:54.382195Z",
"url": "https://files.pythonhosted.org/packages/46/72/af70981a341500419e67d5cb45abe552a7c74b66326ac8877588488da1ac/pydantic_core-2.27.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad3dc5913cccdef93e0a6a95c2d057d2c2cba347815c845cda79ddd3c0f5e17d",
"md5": "20e8c72a96e06dcdab812024b7f12072",
"sha256": "b0cb791f5b45307caae8810c2023a184c74605ec3bcbb67d13846c28ff731ff8"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "20e8c72a96e06dcdab812024b7f12072",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1768331,
"upload_time": "2024-12-18T11:30:58",
"upload_time_iso_8601": "2024-12-18T11:30:58.178347Z",
"url": "https://files.pythonhosted.org/packages/ad/3d/c5913cccdef93e0a6a95c2d057d2c2cba347815c845cda79ddd3c0f5e17d/pydantic_core-2.27.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6f0a3ae8fbee269e4934f14e2e0e00928f9346c5943174f2811193113e58252",
"md5": "b5d89145528fbc0c71631e5352b45030",
"sha256": "688d3fd9fcb71f41c4c015c023d12a79d1c4c0732ec9eb35d96e3388a120dcf3"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b5d89145528fbc0c71631e5352b45030",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1822467,
"upload_time": "2024-12-18T11:31:00",
"upload_time_iso_8601": "2024-12-18T11:31:00.600036Z",
"url": "https://files.pythonhosted.org/packages/f6/f0/a3ae8fbee269e4934f14e2e0e00928f9346c5943174f2811193113e58252/pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d77a7bbf241a04e9f9ea24cd5874354a83526d639b02674648af3f350554276c",
"md5": "735896d733d29397baf83d5e6d68ff91",
"sha256": "3d591580c34f4d731592f0e9fe40f9cc1b430d297eecc70b962e93c5c668f15f"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "735896d733d29397baf83d5e6d68ff91",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1979797,
"upload_time": "2024-12-18T11:31:07",
"upload_time_iso_8601": "2024-12-18T11:31:07.243728Z",
"url": "https://files.pythonhosted.org/packages/d7/7a/7bbf241a04e9f9ea24cd5874354a83526d639b02674648af3f350554276c/pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f5f4784c6107731f89e0005a92ecb8a2efeafdb55eb992b8e9d0a2be5199335",
"md5": "7647ed4465312de510ee996a505549a0",
"sha256": "82f986faf4e644ffc189a7f1aafc86e46ef70372bb153e7001e8afccc6e54133"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "7647ed4465312de510ee996a505549a0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1987839,
"upload_time": "2024-12-18T11:31:09",
"upload_time_iso_8601": "2024-12-18T11:31:09.775847Z",
"url": "https://files.pythonhosted.org/packages/4f/5f/4784c6107731f89e0005a92ecb8a2efeafdb55eb992b8e9d0a2be5199335/pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6da761246562b651dff00de86a5f01b6e4befb518df314c54dec187a78d81c84",
"md5": "80d4c752d27d9ccb7034aba44b257e71",
"sha256": "bec317a27290e2537f922639cafd54990551725fc844249e64c523301d0822fc"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "80d4c752d27d9ccb7034aba44b257e71",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1998861,
"upload_time": "2024-12-18T11:31:13",
"upload_time_iso_8601": "2024-12-18T11:31:13.469931Z",
"url": "https://files.pythonhosted.org/packages/6d/a7/61246562b651dff00de86a5f01b6e4befb518df314c54dec187a78d81c84/pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86aa837821ecf0c022bbb74ca132e117c358321e72e7f9702d1b6a03758545e2",
"md5": "d090bef294c2c28dc00383b8d374e842",
"sha256": "0296abcb83a797db256b773f45773da397da75a08f5fcaef41f2044adec05f50"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "d090bef294c2c28dc00383b8d374e842",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 2116582,
"upload_time": "2024-12-18T11:31:17",
"upload_time_iso_8601": "2024-12-18T11:31:17.423456Z",
"url": "https://files.pythonhosted.org/packages/86/aa/837821ecf0c022bbb74ca132e117c358321e72e7f9702d1b6a03758545e2/pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "81b05e74656e95623cbaa0a6278d16cf15e10a51f6002e3ec126541e95c29ea3",
"md5": "2a4201acde92333dc16f5f861b19026a",
"sha256": "0d75070718e369e452075a6017fbf187f788e17ed67a3abd47fa934d001863d9"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2a4201acde92333dc16f5f861b19026a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 2151985,
"upload_time": "2024-12-18T11:31:19",
"upload_time_iso_8601": "2024-12-18T11:31:19.901654Z",
"url": "https://files.pythonhosted.org/packages/81/b0/5e74656e95623cbaa0a6278d16cf15e10a51f6002e3ec126541e95c29ea3/pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "63373e32eeb2a451fddaa3898e2163746b0cffbbdbb4740d38372db0490d67f3",
"md5": "cabb0c3b345b1d24b1710451a746f15c",
"sha256": "7e17b560be3c98a8e3aa66ce828bdebb9e9ac6ad5466fba92eb74c4c95cb1151"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "cabb0c3b345b1d24b1710451a746f15c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 2004715,
"upload_time": "2024-12-18T11:31:22",
"upload_time_iso_8601": "2024-12-18T11:31:22.821265Z",
"url": "https://files.pythonhosted.org/packages/63/37/3e32eeb2a451fddaa3898e2163746b0cffbbdbb4740d38372db0490d67f3/pydantic_core-2.27.2-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "290edcaea00c9dbd0348b723cae82b0e0c122e0fa2b43fa933e1622fd237a3ee",
"md5": "38d6aed89811a1ce5f6ebce1a5ba97b1",
"sha256": "c33939a82924da9ed65dab5a65d427205a73181d8098e79b6b426bdf8ad4e656"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "38d6aed89811a1ce5f6ebce1a5ba97b1",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1891733,
"upload_time": "2024-12-18T11:31:26",
"upload_time_iso_8601": "2024-12-18T11:31:26.876434Z",
"url": "https://files.pythonhosted.org/packages/29/0e/dcaea00c9dbd0348b723cae82b0e0c122e0fa2b43fa933e1622fd237a3ee/pydantic_core-2.27.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86d3e797bba8860ce650272bda6383a9d8cad1d1c9a75a640c9d0e848076f85e",
"md5": "ce1a753ffee18a6fa5c762cf344d6aff",
"sha256": "00bad2484fa6bda1e216e7345a798bd37c68fb2d97558edd584942aa41b7d278"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ce1a753ffee18a6fa5c762cf344d6aff",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1768375,
"upload_time": "2024-12-18T11:31:29",
"upload_time_iso_8601": "2024-12-18T11:31:29.276861Z",
"url": "https://files.pythonhosted.org/packages/86/d3/e797bba8860ce650272bda6383a9d8cad1d1c9a75a640c9d0e848076f85e/pydantic_core-2.27.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41f7f847b15fb14978ca2b30262548f5fc4872b2724e90f116393eb69008299d",
"md5": "4032abde2b653c79f6812934d4e29680",
"sha256": "c817e2b40aba42bac6f457498dacabc568c3b7a986fc9ba7c8d9d260b71485fb"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4032abde2b653c79f6812934d4e29680",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1822307,
"upload_time": "2024-12-18T11:31:33",
"upload_time_iso_8601": "2024-12-18T11:31:33.123756Z",
"url": "https://files.pythonhosted.org/packages/41/f7/f847b15fb14978ca2b30262548f5fc4872b2724e90f116393eb69008299d/pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c63ed80ec8255b587b2f108e514dc03eed1546cd00f0af281e699797f373f38",
"md5": "e433bc7a8bb756b61f88458ccb28ab49",
"sha256": "251136cdad0cb722e93732cb45ca5299fb56e1344a833640bf93b2803f8d1bfd"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e433bc7a8bb756b61f88458ccb28ab49",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1979971,
"upload_time": "2024-12-18T11:31:35",
"upload_time_iso_8601": "2024-12-18T11:31:35.755168Z",
"url": "https://files.pythonhosted.org/packages/9c/63/ed80ec8255b587b2f108e514dc03eed1546cd00f0af281e699797f373f38/pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a96d6d18308a45454a0de0e975d70171cadaf454bc7a0bf86b9c7688e313f0bb",
"md5": "56a23abca9a5fd84ce386455c3cb3943",
"sha256": "d2088237af596f0a524d3afc39ab3b036e8adb054ee57cbb1dcf8e09da5b29cc"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "56a23abca9a5fd84ce386455c3cb3943",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1987616,
"upload_time": "2024-12-18T11:31:38",
"upload_time_iso_8601": "2024-12-18T11:31:38.534732Z",
"url": "https://files.pythonhosted.org/packages/a9/6d/6d18308a45454a0de0e975d70171cadaf454bc7a0bf86b9c7688e313f0bb/pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "828a05f8780f2c1081b800a7ca54c1971e291c2d07d1a50fb23c7e4aef4ed403",
"md5": "d7887464904dc4fcd5d463a54db25ece",
"sha256": "d4041c0b966a84b4ae7a09832eb691a35aec90910cd2dbe7a208de59be77965b"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "d7887464904dc4fcd5d463a54db25ece",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1998943,
"upload_time": "2024-12-18T11:31:41",
"upload_time_iso_8601": "2024-12-18T11:31:41.853156Z",
"url": "https://files.pythonhosted.org/packages/82/8a/05f8780f2c1081b800a7ca54c1971e291c2d07d1a50fb23c7e4aef4ed403/pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e3efe5b6613d9e4c0038434396b46c5303f5ade871166900b357ada4766c5b7",
"md5": "a93924feda64cd0f3c7be000407c35e7",
"sha256": "8083d4e875ebe0b864ffef72a4304827015cff328a1be6e22cc850753bfb122b"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "a93924feda64cd0f3c7be000407c35e7",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2116654,
"upload_time": "2024-12-18T11:31:44",
"upload_time_iso_8601": "2024-12-18T11:31:44.756260Z",
"url": "https://files.pythonhosted.org/packages/5e/3e/fe5b6613d9e4c0038434396b46c5303f5ade871166900b357ada4766c5b7/pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dbad28869f58938fad8cc84739c4e592989730bfb69b7c90a8fff138dff18e1e",
"md5": "dd00dee6561093980fd1f425d20c766c",
"sha256": "f141ee28a0ad2123b6611b6ceff018039df17f32ada8b534e6aa039545a3efb2"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "dd00dee6561093980fd1f425d20c766c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2152292,
"upload_time": "2024-12-18T11:31:48",
"upload_time_iso_8601": "2024-12-18T11:31:48.613793Z",
"url": "https://files.pythonhosted.org/packages/db/ad/28869f58938fad8cc84739c4e592989730bfb69b7c90a8fff138dff18e1e/pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a10cc5c5cd3689c32ed1fe8c5d234b079c12c281c051759770c05b8bed6412b5",
"md5": "ff46255783d29c93d0a645ba619643ae",
"sha256": "7d0c8399fcc1848491f00e0314bd59fb34a9c008761bcb422a057670c3f65e35"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "ff46255783d29c93d0a645ba619643ae",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2004961,
"upload_time": "2024-12-18T11:31:52",
"upload_time_iso_8601": "2024-12-18T11:31:52.446065Z",
"url": "https://files.pythonhosted.org/packages/a1/0c/c5c5cd3689c32ed1fe8c5d234b079c12c281c051759770c05b8bed6412b5/pydantic_core-2.27.2-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc01f3e5ac5e7c25833db5eb555f7b7ab24cd6f8c322d3a3ad2d67a952dc0abc",
"md5": "c90633350cda088856cf60c1c87de618",
"sha256": "eb026e5a4c1fee05726072337ff51d1efb6f59090b7da90d30ea58625b1ffb39"
},
"downloads": -1,
"filename": "pydantic_core-2.27.2.tar.gz",
"has_sig": false,
"md5_digest": "c90633350cda088856cf60c1c87de618",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 413443,
"upload_time": "2024-12-18T11:31:54",
"upload_time_iso_8601": "2024-12-18T11:31:54.917780Z",
"url": "https://files.pythonhosted.org/packages/fc/01/f3e5ac5e7c25833db5eb555f7b7ab24cd6f8c322d3a3ad2d67a952dc0abc/pydantic_core-2.27.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-18 11:31:54",
"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"
}