# 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/98/85/0ac4f8fc632fa1bb3f473e4dfb1cd520ede11179f76a028edfd2ca989ed4/pydantic_core-2.26.0.tar.gz",
"platform": null,
"description": "# pydantic-core\n\n[![CI](https://github.com/pydantic/pydantic-core/workflows/ci/badge.svg?event=push)](https://github.com/pydantic/pydantic-core/actions?query=event%3Apush+branch%3Amain+workflow%3Aci)\n[![Coverage](https://codecov.io/gh/pydantic/pydantic-core/branch/main/graph/badge.svg)](https://codecov.io/gh/pydantic/pydantic-core)\n[![pypi](https://img.shields.io/pypi/v/pydantic-core.svg)](https://pypi.python.org/pypi/pydantic-core)\n[![versions](https://img.shields.io/pypi/pyversions/pydantic-core.svg)](https://github.com/pydantic/pydantic-core)\n[![license](https://img.shields.io/github/license/pydantic/pydantic-core.svg)](https://github.com/pydantic/pydantic-core/blob/main/LICENSE)\n\nThis package provides the core functionality for [pydantic](https://docs.pydantic.dev) validation and serialization.\n\nPydantic-core is currently around 17x faster than pydantic V1.\nSee [`tests/benchmarks/`](./tests/benchmarks/) for details.\n\n## Example of direct usage\n\n_NOTE: You should not need to use pydantic-core directly; instead, use pydantic, which in turn uses pydantic-core._\n\n```py\nfrom pydantic_core import SchemaValidator, ValidationError\n\n\nv = SchemaValidator(\n {\n 'type': 'typed-dict',\n 'fields': {\n 'name': {\n 'type': 'typed-dict-field',\n 'schema': {\n 'type': 'str',\n },\n },\n 'age': {\n 'type': 'typed-dict-field',\n 'schema': {\n 'type': 'int',\n 'ge': 18,\n },\n },\n 'is_developer': {\n 'type': 'typed-dict-field',\n 'schema': {\n 'type': 'default',\n 'schema': {'type': 'bool'},\n 'default': True,\n },\n },\n },\n }\n)\n\nr1 = v.validate_python({'name': 'Samuel', 'age': 35})\nassert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}\n\n# pydantic-core can also validate JSON directly\nr2 = v.validate_json('{\"name\": \"Samuel\", \"age\": 35}')\nassert r1 == r2\n\ntry:\n v.validate_python({'name': 'Samuel', 'age': 11})\nexcept ValidationError as e:\n print(e)\n \"\"\"\n 1 validation error for model\n age\n Input should be greater than or equal to 18\n [type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]\n \"\"\"\n```\n\n## Getting Started\n\nYou'll need rust stable [installed](https://rustup.rs/), or rust nightly if you want to generate accurate coverage.\n\nWith rust and python 3.8+ installed, compiling pydantic-core should be possible with roughly the following:\n\n```bash\n# clone this repo or your fork\ngit clone git@github.com:pydantic/pydantic-core.git\ncd pydantic-core\n# create a new virtual env\npython3 -m venv env\nsource env/bin/activate\n# install dependencies and install pydantic-core\nmake install\n```\n\nThat should be it, the example shown above should now run.\n\nYou might find it useful to look at [`python/pydantic_core/_pydantic_core.pyi`](./python/pydantic_core/_pydantic_core.pyi) and\n[`python/pydantic_core/core_schema.py`](./python/pydantic_core/core_schema.py) for more information on the python API,\nbeyond that, [`tests/`](./tests) provide a large number of examples of usage.\n\nIf you want to contribute to pydantic-core, you'll want to use some other make commands:\n* `make build-dev` to build the package during development\n* `make build-prod` to perform an optimised build for benchmarking\n* `make test` to run the tests\n* `make testcov` to run the tests and generate a coverage report\n* `make lint` to run the linter\n* `make format` to format python and rust code\n* `make` to run `format build-dev lint test`\n\n## Profiling\n\nIt's possible to profile the code using the [`flamegraph` utility from `flamegraph-rs`](https://github.com/flamegraph-rs/flamegraph). (Tested on Linux.) You can install this with `cargo install flamegraph`.\n\nRun `make build-profiling` to install a release build with debugging symbols included (needed for profiling).\n\nOnce that is built, you can profile pytest benchmarks with (e.g.):\n\n```bash\nflamegraph -- pytest tests/benchmarks/test_micro_benchmarks.py -k test_list_of_ints_core_py --benchmark-enable\n```\nThe `flamegraph` command will produce an interactive SVG at `flamegraph.svg`.\n\n## Releasing\n\n1. Bump package version locally. Do not just edit `Cargo.toml` on Github, you need both `Cargo.toml` and `Cargo.lock` to be updated.\n2. Make a PR for the version bump and merge it.\n3. Go to https://github.com/pydantic/pydantic-core/releases and click \"Draft a new release\"\n4. In the \"Choose a tag\" dropdown enter the new tag `v<the.new.version>` and select \"Create new tag on publish\" when the option appears.\n5. Enter the release title in the form \"v<the.new.version> <YYYY-MM-DD>\"\n6. Click Generate release notes button\n7. Click Publish release\n8. Go to https://github.com/pydantic/pydantic-core/actions and ensure that all build for release are done successfully.\n9. Go to https://pypi.org/project/pydantic-core/ and ensure that the latest release is published.\n10. Done \ud83c\udf89\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Core functionality for Pydantic validation and serialization",
"version": "2.26.0",
"project_urls": {
"Funding": "https://github.com/sponsors/samuelcolvin",
"Homepage": "https://github.com/pydantic/pydantic-core",
"Source": "https://github.com/pydantic/pydantic-core"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "37834255ccbc1c18f7dea161ecc8c14ce4d9d3a896821929825ba831c71ca067",
"md5": "72e7c7530498800f39307a3be3e87ce5",
"sha256": "fa77bb565223821cedb59e1fc4e9654fc55c3cfe8bf35cb6a23ceb3e4314ff1f"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "72e7c7530498800f39307a3be3e87ce5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1894094,
"upload_time": "2024-11-04T14:59:08",
"upload_time_iso_8601": "2024-11-04T14:59:08.066864Z",
"url": "https://files.pythonhosted.org/packages/37/83/4255ccbc1c18f7dea161ecc8c14ce4d9d3a896821929825ba831c71ca067/pydantic_core-2.26.0-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "250d010474b9781e9eb9e85b927cf7ce463491f1641ec4f5813d9d8104376c56",
"md5": "6d049e16f1b5187bba7d5c89834dd733",
"sha256": "e06ea3a4d2dd8213de98abafbd82455997daf5ed2c9ac858e13f1fe929e8ebff"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6d049e16f1b5187bba7d5c89834dd733",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1807209,
"upload_time": "2024-11-04T14:59:09",
"upload_time_iso_8601": "2024-11-04T14:59:09.887676Z",
"url": "https://files.pythonhosted.org/packages/25/0d/010474b9781e9eb9e85b927cf7ce463491f1641ec4f5813d9d8104376c56/pydantic_core-2.26.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bacbb8068c08dc56d3a3af1757f806111749d3f9fcd467382d6baebd669932e4",
"md5": "00312634c62d6f5b346164c0b7ce0781",
"sha256": "9d717b3ee2208ee80a91382fd2d0d000c50f775a2a3a9b59b05e70063a82e767"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "00312634c62d6f5b346164c0b7ce0781",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1827966,
"upload_time": "2024-11-04T14:59:11",
"upload_time_iso_8601": "2024-11-04T14:59:11.232221Z",
"url": "https://files.pythonhosted.org/packages/ba/cb/b8068c08dc56d3a3af1757f806111749d3f9fcd467382d6baebd669932e4/pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7835a10962382794c4b086e33451ddf7a32f4330ca366833d8959662419290e6",
"md5": "9966095c1ea5385dd141c6b447318542",
"sha256": "ebd2ad03dff9a72952972cf89eaf62afc110dc4efc920b3ab1d1fe4cec350ebc"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9966095c1ea5385dd141c6b447318542",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1848455,
"upload_time": "2024-11-04T14:59:12",
"upload_time_iso_8601": "2024-11-04T14:59:12.537745Z",
"url": "https://files.pythonhosted.org/packages/78/35/a10962382794c4b086e33451ddf7a32f4330ca366833d8959662419290e6/pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ef7a1d63d2d2956ce633b68a615b219c5c470c88f5610f826255db7d5da983b",
"md5": "9595d02e75325cd301fd5bb87d77fee1",
"sha256": "c71d75e49d3d566f73389289a6470983a01e580ddc1d06105a31fd87410211da"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9595d02e75325cd301fd5bb87d77fee1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2034771,
"upload_time": "2024-11-04T14:59:14",
"upload_time_iso_8601": "2024-11-04T14:59:14.403812Z",
"url": "https://files.pythonhosted.org/packages/3e/f7/a1d63d2d2956ce633b68a615b219c5c470c88f5610f826255db7d5da983b/pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ddcf190d6ea9750ad7196858fe42a43a55833d4221d1242770ba23ae5565c317",
"md5": "02f28b1c75f82d28e83d49cd6f072a64",
"sha256": "69f94e23cf93f487962eb5fd2294ca252f16b4f251b5a06b59f471777d842d3c"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "02f28b1c75f82d28e83d49cd6f072a64",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2771621,
"upload_time": "2024-11-04T14:59:16",
"upload_time_iso_8601": "2024-11-04T14:59:16.292699Z",
"url": "https://files.pythonhosted.org/packages/dd/cf/190d6ea9750ad7196858fe42a43a55833d4221d1242770ba23ae5565c317/pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ac1a2fae016d8019150f8e4226c28eed2917ca868e5d2a0eb842f7ff920a958",
"md5": "1b3fad1bf1c3e93fd43e54c56a30ddb2",
"sha256": "6e7282095ce7e535ba187f04171a9b149d244dfd4ae27b10953966fb1bbb7938"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1b3fad1bf1c3e93fd43e54c56a30ddb2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2128356,
"upload_time": "2024-11-04T14:59:18",
"upload_time_iso_8601": "2024-11-04T14:59:18.354622Z",
"url": "https://files.pythonhosted.org/packages/4a/c1/a2fae016d8019150f8e4226c28eed2917ca868e5d2a0eb842f7ff920a958/pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a05de47e1bc52cb173d58956cec64f47e5f1bd68731068707f37fe9c688520d5",
"md5": "e6486f05149e4634f0e484c27b621282",
"sha256": "f6bcc8f7f54a80aca5347ac540e2bea327114bbdb13ca1523c6b7672b0863c2a"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e6486f05149e4634f0e484c27b621282",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1980367,
"upload_time": "2024-11-04T14:59:19",
"upload_time_iso_8601": "2024-11-04T14:59:19.614284Z",
"url": "https://files.pythonhosted.org/packages/a0/5d/e47e1bc52cb173d58956cec64f47e5f1bd68731068707f37fe9c688520d5/pydantic_core-2.26.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d75a2f1cd12903936798ff1d981e2ce4d8be371f7acb374658e66be9689d4a1",
"md5": "832a04afd4f231836d8f2af16202ef95",
"sha256": "ffb4278eb5e1aefee951e18332ff5d8b2e76f40efc7f4931755525871de2dbb0"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "832a04afd4f231836d8f2af16202ef95",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1990225,
"upload_time": "2024-11-04T14:59:21",
"upload_time_iso_8601": "2024-11-04T14:59:21.198149Z",
"url": "https://files.pythonhosted.org/packages/2d/75/a2f1cd12903936798ff1d981e2ce4d8be371f7acb374658e66be9689d4a1/pydantic_core-2.26.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c1cc1fd1b620758de4c793410cd11b374231832dfea6b89d3bae4111a984f77",
"md5": "fae17817be4eadf98d947779bddb88ca",
"sha256": "579e67fbd86d9fa9941198b0642e988d7e169df2e1f1d07b93bcd555c8075670"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-cp310-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "fae17817be4eadf98d947779bddb88ca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2087008,
"upload_time": "2024-11-04T14:59:22",
"upload_time_iso_8601": "2024-11-04T14:59:22.831545Z",
"url": "https://files.pythonhosted.org/packages/9c/1c/c1fd1b620758de4c793410cd11b374231832dfea6b89d3bae4111a984f77/pydantic_core-2.26.0-cp310-cp310-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01890b0fd850658f8873a70d4e9206a2f6c4e25ecaecc3e622b19526a8fbb36d",
"md5": "08e8cf6d674e7665f48f4e18918fa783",
"sha256": "fbca9dd66c7d47cc103288c93fd1f472626236c5d015dae1cbe236ffd84d7ebb"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "08e8cf6d674e7665f48f4e18918fa783",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2139487,
"upload_time": "2024-11-04T14:59:24",
"upload_time_iso_8601": "2024-11-04T14:59:24.203872Z",
"url": "https://files.pythonhosted.org/packages/01/89/0b0fd850658f8873a70d4e9206a2f6c4e25ecaecc3e622b19526a8fbb36d/pydantic_core-2.26.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "679a953ed42f0ab7fbf1b3ad89fca1ad2a1cf93443a1fdf2fc7632f300f0f268",
"md5": "7062189747c16073d32f00551fcfeb9e",
"sha256": "5a2e33c88c5f8d96d56e0c68e95f87663cc3ce4c20f207d0b382533bec836610"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "7062189747c16073d32f00551fcfeb9e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1811923,
"upload_time": "2024-11-04T14:59:25",
"upload_time_iso_8601": "2024-11-04T14:59:25.598613Z",
"url": "https://files.pythonhosted.org/packages/67/9a/953ed42f0ab7fbf1b3ad89fca1ad2a1cf93443a1fdf2fc7632f300f0f268/pydantic_core-2.26.0-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ccc37edc270ac44b6d16918de608e42209fef24414bfa310f9ada27d9fc8b73d",
"md5": "9f2d618232b5cfd369fe4afcde8e55f0",
"sha256": "f7b7f4ff5f1fc67b4bab2cbab5d5bd321a0bf40ed63bde9a0d439d78ad97d9c2"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "9f2d618232b5cfd369fe4afcde8e55f0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1971268,
"upload_time": "2024-11-04T14:59:27",
"upload_time_iso_8601": "2024-11-04T14:59:27.258367Z",
"url": "https://files.pythonhosted.org/packages/cc/c3/7edc270ac44b6d16918de608e42209fef24414bfa310f9ada27d9fc8b73d/pydantic_core-2.26.0-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9faa66ad7d6d4afc942356bd1e8f2f5924c3da93d9b17fce6aa6a63d7781cfb2",
"md5": "1eb7816aed6365cd5798c200c31710e6",
"sha256": "a784ef6bbc8f3086601cba9fee29b6e608889a823762af5bb0b92227298d376a"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "1eb7816aed6365cd5798c200c31710e6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1891424,
"upload_time": "2024-11-04T14:59:29",
"upload_time_iso_8601": "2024-11-04T14:59:29.351926Z",
"url": "https://files.pythonhosted.org/packages/9f/aa/66ad7d6d4afc942356bd1e8f2f5924c3da93d9b17fce6aa6a63d7781cfb2/pydantic_core-2.26.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5655f2e38ad590cf22253ec588102eba734ee4e7e1f1f9db98a6d118f468e84f",
"md5": "577451163c81433d386230c18983be5c",
"sha256": "61c6b18e7cc5ab80a8f78b1181cd1fec18ea7b8e3b871995b337d6e5622c5a9f"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "577451163c81433d386230c18983be5c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1806630,
"upload_time": "2024-11-04T14:59:31",
"upload_time_iso_8601": "2024-11-04T14:59:31.185138Z",
"url": "https://files.pythonhosted.org/packages/56/55/f2e38ad590cf22253ec588102eba734ee4e7e1f1f9db98a6d118f468e84f/pydantic_core-2.26.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1bef92ad3cb55f3bac785979dcd82cebdaa3bfeaadd4a88676f876056e63d32",
"md5": "8537024590b5ce47828f2536675a80d0",
"sha256": "d561fa3a7b8267645f678a114105c4b91906da70fd4772cd0bf15f5b35987149"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8537024590b5ce47828f2536675a80d0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1825543,
"upload_time": "2024-11-04T14:59:32",
"upload_time_iso_8601": "2024-11-04T14:59:32.678929Z",
"url": "https://files.pythonhosted.org/packages/a1/be/f92ad3cb55f3bac785979dcd82cebdaa3bfeaadd4a88676f876056e63d32/pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45d4cb94d20c32a74060439ca60237e63ba1d673d84415e73ba20e2dd87b0b08",
"md5": "7a820594262ef55c1a3a9b98c411a434",
"sha256": "77411c34d38c3fd0998d34e7a4e2a46432511f6b96096438691d08dfe103d40d"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7a820594262ef55c1a3a9b98c411a434",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1847136,
"upload_time": "2024-11-04T14:59:34",
"upload_time_iso_8601": "2024-11-04T14:59:34.324201Z",
"url": "https://files.pythonhosted.org/packages/45/d4/cb94d20c32a74060439ca60237e63ba1d673d84415e73ba20e2dd87b0b08/pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9183712065f81634608d710ec741f91236765b7206d02e81b70e6f0ad12ad0e7",
"md5": "77e5cde61ce0ce52dbf9272bf1d33669",
"sha256": "b105bfd776f303e61b8d12f73dd8613be93d3df634d0a6a7d435661038530d8b"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "77e5cde61ce0ce52dbf9272bf1d33669",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2033125,
"upload_time": "2024-11-04T14:59:35",
"upload_time_iso_8601": "2024-11-04T14:59:35.853391Z",
"url": "https://files.pythonhosted.org/packages/91/83/712065f81634608d710ec741f91236765b7206d02e81b70e6f0ad12ad0e7/pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b6ae2cbcf69b58a4ccfd4884d6c09f9b0f2adfc67789cb224da59aef6f39ca4",
"md5": "1ade52ecf7ede0c8e049d572e65002b3",
"sha256": "d81b369d40e5077624e22ddbd5d3a2090b5eeab1fe836552019718f93c114fc0"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1ade52ecf7ede0c8e049d572e65002b3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2764616,
"upload_time": "2024-11-04T14:59:38",
"upload_time_iso_8601": "2024-11-04T14:59:38.526247Z",
"url": "https://files.pythonhosted.org/packages/9b/6a/e2cbcf69b58a4ccfd4884d6c09f9b0f2adfc67789cb224da59aef6f39ca4/pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a59e47214b4ba1e279abfdd02c2e4d6cbbabf3e67653a131f317bbb22023009e",
"md5": "a2d84432bb7195cb8260e53a86b99814",
"sha256": "616be5b07fb64d23a8ed6b711732d3038698b89f67d76f97248819626415bed8"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a2d84432bb7195cb8260e53a86b99814",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2128645,
"upload_time": "2024-11-04T14:59:39",
"upload_time_iso_8601": "2024-11-04T14:59:39.960872Z",
"url": "https://files.pythonhosted.org/packages/a5/9e/47214b4ba1e279abfdd02c2e4d6cbbabf3e67653a131f317bbb22023009e/pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "66d23bcd9bf966ff3529cb4ddfeb7a3ff7a044f1c5eb4ddcf4372b8cf6b935f7",
"md5": "ef4c1b0c0e822b58030612516db08d50",
"sha256": "2e4de25be2bb212057f674ce211f395baa6181cadcc83ddf014bb29148515bef"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ef4c1b0c0e822b58030612516db08d50",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1978102,
"upload_time": "2024-11-04T14:59:41",
"upload_time_iso_8601": "2024-11-04T14:59:41.400536Z",
"url": "https://files.pythonhosted.org/packages/66/d2/3bcd9bf966ff3529cb4ddfeb7a3ff7a044f1c5eb4ddcf4372b8cf6b935f7/pydantic_core-2.26.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d6acc39b1921e25cc9458420a351faf3478f244187dff1a2d36f8866684858d",
"md5": "8da8cebbe4b4030d8eddb2bcf688851b",
"sha256": "d736f34c75600020739d57ffd1a106e36e4afecf6f0d70db804fe9612195f0c6"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "8da8cebbe4b4030d8eddb2bcf688851b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1989154,
"upload_time": "2024-11-04T14:59:43",
"upload_time_iso_8601": "2024-11-04T14:59:43.630481Z",
"url": "https://files.pythonhosted.org/packages/4d/6a/cc39b1921e25cc9458420a351faf3478f244187dff1a2d36f8866684858d/pydantic_core-2.26.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8fef0af13d45ed54e9ba8af3550b59272f93a590522be613f3d901273df21e6",
"md5": "7aaeb62ff50f96127af19ce45864c006",
"sha256": "3867f3e474aa9191fb40dd413e7fbcaa1e2099603aae3da0d66141d9eb83b937"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-cp311-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "7aaeb62ff50f96127af19ce45864c006",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2085550,
"upload_time": "2024-11-04T14:59:45",
"upload_time_iso_8601": "2024-11-04T14:59:45.046424Z",
"url": "https://files.pythonhosted.org/packages/e8/fe/f0af13d45ed54e9ba8af3550b59272f93a590522be613f3d901273df21e6/pydantic_core-2.26.0-cp311-cp311-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3360082a0e5e1fad6f303a47ccff65b65b6bd7c9902e1a54a13b0afd8883f10",
"md5": "ecd339c9c1a9b3643b9d056d2eaa3609",
"sha256": "063a33d46af3593978bce031eac378c9603ca0a11719b0f7bd1969aa9e870a8c"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ecd339c9c1a9b3643b9d056d2eaa3609",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2137396,
"upload_time": "2024-11-04T14:59:48",
"upload_time_iso_8601": "2024-11-04T14:59:48.535551Z",
"url": "https://files.pythonhosted.org/packages/f3/36/0082a0e5e1fad6f303a47ccff65b65b6bd7c9902e1a54a13b0afd8883f10/pydantic_core-2.26.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c651f4b03c1c2a0e00e6104fe8e581e4afa85d765d5e0c3186226431d2ab8b81",
"md5": "00358051eaf22ea2a51d6ff41d82d074",
"sha256": "82a803d0ae210f3f7dddbd774ad5a2cb53e40676cda7c91f670cf8297832225c"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "00358051eaf22ea2a51d6ff41d82d074",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1808376,
"upload_time": "2024-11-04T14:59:52",
"upload_time_iso_8601": "2024-11-04T14:59:52.164862Z",
"url": "https://files.pythonhosted.org/packages/c6/51/f4b03c1c2a0e00e6104fe8e581e4afa85d765d5e0c3186226431d2ab8b81/pydantic_core-2.26.0-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c3bf633bb9c93088427b4247fb5abcdf594bb2f03f8b9f846113d820de3df6e",
"md5": "eef6cc00fd4f246289f7e4b28e72d211",
"sha256": "7b35ab4a675b43acfb483dcdf9e11ef845b68ac9d8b6ca81dbaa522f38da0ed6"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "eef6cc00fd4f246289f7e4b28e72d211",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1970883,
"upload_time": "2024-11-04T14:59:54",
"upload_time_iso_8601": "2024-11-04T14:59:54.127814Z",
"url": "https://files.pythonhosted.org/packages/5c/3b/f633bb9c93088427b4247fb5abcdf594bb2f03f8b9f846113d820de3df6e/pydantic_core-2.26.0-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae544f0d5c38b54182e6ea40392ddd6c120644eae90e96bfe57c3470c7b466a0",
"md5": "0cc7f4f877d7079b04e507021e86a1fd",
"sha256": "b1fc2653ccc27bf7917cb70f13c64f4122edc4bc992e8be8c04ee9306dafce57"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp311-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "0cc7f4f877d7079b04e507021e86a1fd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1860562,
"upload_time": "2024-11-04T14:59:55",
"upload_time_iso_8601": "2024-11-04T14:59:55.750876Z",
"url": "https://files.pythonhosted.org/packages/ae/54/4f0d5c38b54182e6ea40392ddd6c120644eae90e96bfe57c3470c7b466a0/pydantic_core-2.26.0-cp311-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77f24520ff4f451ce85d8fcea4381ca4d690792433c01a973bb72cf0d0d5a21a",
"md5": "caba19c4c009c933e135afe2d6e13c5f",
"sha256": "9401038c16d560ae01551319141c0ffd2e1b80f9659ea535e076ca23ae55e866"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "caba19c4c009c933e135afe2d6e13c5f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1888011,
"upload_time": "2024-11-04T14:59:57",
"upload_time_iso_8601": "2024-11-04T14:59:57.259011Z",
"url": "https://files.pythonhosted.org/packages/77/f2/4520ff4f451ce85d8fcea4381ca4d690792433c01a973bb72cf0d0d5a21a/pydantic_core-2.26.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cac9903cc69c4db2101d5fa1ae1102051c144377d77c47a6a18dd5ad95c57d0",
"md5": "fcf89c2824ffb5c3b356faa2089e81af",
"sha256": "a91967938a5dd16d2074307d98a2232cec494d6215d97f5c0f09135be478517d"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fcf89c2824ffb5c3b356faa2089e81af",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1804769,
"upload_time": "2024-11-04T14:59:58",
"upload_time_iso_8601": "2024-11-04T14:59:58.779935Z",
"url": "https://files.pythonhosted.org/packages/0c/ac/9903cc69c4db2101d5fa1ae1102051c144377d77c47a6a18dd5ad95c57d0/pydantic_core-2.26.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f9d4257382832cc97fcabd6f3350e2638c807a696221575ae35af2eba34e12e",
"md5": "aeecadcbdffbce4042f095de01071f39",
"sha256": "3525264ca53dd25de397584fe83aa949042854229bbfe940ff7cb19ef5238691"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "aeecadcbdffbce4042f095de01071f39",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1821607,
"upload_time": "2024-11-04T15:00:00",
"upload_time_iso_8601": "2024-11-04T15:00:00.401085Z",
"url": "https://files.pythonhosted.org/packages/9f/9d/4257382832cc97fcabd6f3350e2638c807a696221575ae35af2eba34e12e/pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc60e4bc9a389124c1d67879f6fa947e5ace9c9e514799d1ea0ff9e2d55db787",
"md5": "d6c951e4fdbd630d764771d529183551",
"sha256": "2076ead709b2e2f6c32677822a53d72c3aac0a91c9a189256390a67990fdd729"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d6c951e4fdbd630d764771d529183551",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1848308,
"upload_time": "2024-11-04T15:00:02",
"upload_time_iso_8601": "2024-11-04T15:00:02.254991Z",
"url": "https://files.pythonhosted.org/packages/bc/60/e4bc9a389124c1d67879f6fa947e5ace9c9e514799d1ea0ff9e2d55db787/pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d970a4fed9ed818015bb90a13ff869f3f155d47f66f59690c92f2a89ee3816d",
"md5": "0bc5b0c9538ac70b982ddf99707f85f8",
"sha256": "3a33391da35242c051004e23dc6ca138237943b1c182f6f7d7cd73b784047a76"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0bc5b0c9538ac70b982ddf99707f85f8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2031400,
"upload_time": "2024-11-04T15:00:04",
"upload_time_iso_8601": "2024-11-04T15:00:04.022318Z",
"url": "https://files.pythonhosted.org/packages/0d/97/0a4fed9ed818015bb90a13ff869f3f155d47f66f59690c92f2a89ee3816d/pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0b9382855644efb005cffe46228545fb5115e37bd5c43d6cdbe27fc20dffb3a",
"md5": "c8fc23e6473e2fffc310bab13e7790a1",
"sha256": "da5090641c03599317079b258c99a13c15ed2e4de334d6e4b5c39e5555f3f296"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c8fc23e6473e2fffc310bab13e7790a1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2670006,
"upload_time": "2024-11-04T15:00:05",
"upload_time_iso_8601": "2024-11-04T15:00:05.819896Z",
"url": "https://files.pythonhosted.org/packages/a0/b9/382855644efb005cffe46228545fb5115e37bd5c43d6cdbe27fc20dffb3a/pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb3779811738df4553c92e6b06bed69af992669a3635985765d829e54e468cad",
"md5": "0d7cb6631f219c4935c555a47d50fb11",
"sha256": "550f622b247b1209b8880043834be7f1ac24c33f63f54cd53ee4a6f62c80b9ec"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0d7cb6631f219c4935c555a47d50fb11",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2152126,
"upload_time": "2024-11-04T15:00:07",
"upload_time_iso_8601": "2024-11-04T15:00:07.726001Z",
"url": "https://files.pythonhosted.org/packages/fb/37/79811738df4553c92e6b06bed69af992669a3635985765d829e54e468cad/pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ca9412b2c261ca9b0462a0546b0d98360da346470f6b67d6b4a0aec83806ea9",
"md5": "e1cee3ae3ac8649167dfbe87a27115a1",
"sha256": "48ef296842a01398305d2901c5c60347f8508d2f7d83bcfd9d3438bdfad96f5e"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e1cee3ae3ac8649167dfbe87a27115a1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1984849,
"upload_time": "2024-11-04T15:00:09",
"upload_time_iso_8601": "2024-11-04T15:00:09.304078Z",
"url": "https://files.pythonhosted.org/packages/2c/a9/412b2c261ca9b0462a0546b0d98360da346470f6b67d6b4a0aec83806ea9/pydantic_core-2.26.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a060550d70ad74f40be19c77c3afe2316de39fc6f060764769d8ba4188d139d",
"md5": "98a4ce1e841a67cdd49602f830e9ec8f",
"sha256": "6bc9eb88b2b48527b9b6b7a79a80a8e48b07e1334f659d09f5dd26ebb19cfd9c"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "98a4ce1e841a67cdd49602f830e9ec8f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1994337,
"upload_time": "2024-11-04T15:00:11",
"upload_time_iso_8601": "2024-11-04T15:00:11.179306Z",
"url": "https://files.pythonhosted.org/packages/1a/06/0550d70ad74f40be19c77c3afe2316de39fc6f060764769d8ba4188d139d/pydantic_core-2.26.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c4c3db65e61934614316f416f55a4098ff09d6b754d565b3b11180587d9a03d",
"md5": "8d86a54f84e2ab313fc52bd5d740d96c",
"sha256": "d9651e747f64017aaa9ed8eab70a9ceada438b4395c8379614032dd178f96d57"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-cp312-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "8d86a54f84e2ab313fc52bd5d740d96c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2084455,
"upload_time": "2024-11-04T15:00:12",
"upload_time_iso_8601": "2024-11-04T15:00:12.719797Z",
"url": "https://files.pythonhosted.org/packages/1c/4c/3db65e61934614316f416f55a4098ff09d6b754d565b3b11180587d9a03d/pydantic_core-2.26.0-cp312-cp312-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d0dba145c804aca4475c6a2204255d993afbdc4574d32ac3a18f6fa090dab48",
"md5": "b249d1fa4d15f2e25a86bc45436520db",
"sha256": "42c005173da25bb76c54373374434d922ba3888f430879fdaf749d7abb4d8ea3"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b249d1fa4d15f2e25a86bc45436520db",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2149745,
"upload_time": "2024-11-04T15:00:14",
"upload_time_iso_8601": "2024-11-04T15:00:14.385131Z",
"url": "https://files.pythonhosted.org/packages/4d/0d/ba145c804aca4475c6a2204255d993afbdc4574d32ac3a18f6fa090dab48/pydantic_core-2.26.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cb098ae65886b1c2526a88b73c9c313d5d9fa63b24607515bd800f498e0addb",
"md5": "e0ee8ef6d9e4c0451b1d3ad15aa62133",
"sha256": "3f411e6d6d3fb93af5bb111313bb0cd68a6e38bae5afb79f2de530b3b44fad33"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "e0ee8ef6d9e4c0451b1d3ad15aa62133",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1829457,
"upload_time": "2024-11-04T15:00:16",
"upload_time_iso_8601": "2024-11-04T15:00:16.871850Z",
"url": "https://files.pythonhosted.org/packages/0c/b0/98ae65886b1c2526a88b73c9c313d5d9fa63b24607515bd800f498e0addb/pydantic_core-2.26.0-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7185f4408084f498ebe0a0e21c03138731a600ffc20f41cc368aa734c348617",
"md5": "52889288db750dd6e22ce9424f07c579",
"sha256": "f615cba236fdd4b3f366d42427d447856b1afa19f5e40e24aa1da56b6f042e30"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "52889288db750dd6e22ce9424f07c579",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1972834,
"upload_time": "2024-11-04T15:00:18",
"upload_time_iso_8601": "2024-11-04T15:00:18.440641Z",
"url": "https://files.pythonhosted.org/packages/d7/18/5f4408084f498ebe0a0e21c03138731a600ffc20f41cc368aa734c348617/pydantic_core-2.26.0-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "015325702f8441fcf65f8ef521f28e66a3463d84a9ceaf4eb69b28ed3968e82b",
"md5": "2addb54c969615a19a793ad6296d9905",
"sha256": "9e0330e20adae0571934ac745b240a0809eb2d85ee76e786bafe0d30a6ccd8cb"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp312-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "2addb54c969615a19a793ad6296d9905",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1875737,
"upload_time": "2024-11-04T15:00:20",
"upload_time_iso_8601": "2024-11-04T15:00:20.523624Z",
"url": "https://files.pythonhosted.org/packages/01/53/25702f8441fcf65f8ef521f28e66a3463d84a9ceaf4eb69b28ed3968e82b/pydantic_core-2.26.0-cp312-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4bc994f23913e10019d1b5f38ec0ac8241352e8517a05ed4da29e3db6c948f9",
"md5": "28af428894195b0349e1f9f9bbc7bde9",
"sha256": "18305e996cac7053c82f10bd945ef67a8f6e80acc947f8929ddc0af87d5eb3cb"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "28af428894195b0349e1f9f9bbc7bde9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1887883,
"upload_time": "2024-11-04T15:00:22",
"upload_time_iso_8601": "2024-11-04T15:00:22.872848Z",
"url": "https://files.pythonhosted.org/packages/a4/bc/994f23913e10019d1b5f38ec0ac8241352e8517a05ed4da29e3db6c948f9/pydantic_core-2.26.0-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38ed271fcd6fded541dd607b950ff61bb541ca838a724e43639130422dd4ece7",
"md5": "d565b7d83d58f5086deb265bcb357b2a",
"sha256": "036fdd55f2f435dcb06dccdb9e1074fb8b9121560e5bed19f40a56c807b878a7"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d565b7d83d58f5086deb265bcb357b2a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1804762,
"upload_time": "2024-11-04T15:00:24",
"upload_time_iso_8601": "2024-11-04T15:00:24.593610Z",
"url": "https://files.pythonhosted.org/packages/38/ed/271fcd6fded541dd607b950ff61bb541ca838a724e43639130422dd4ece7/pydantic_core-2.26.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9e089985a8a89ff0909739bcca1f498c0cf9c92ad59f032161a07e784cdff41",
"md5": "31a9ccbdfdc11e380a631c9e58b9c901",
"sha256": "330d10f9112599863008d130a3ddba54e5bcafc5b9d24f62ace63e054b72f169"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "31a9ccbdfdc11e380a631c9e58b9c901",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1821411,
"upload_time": "2024-11-04T15:00:26",
"upload_time_iso_8601": "2024-11-04T15:00:26.304473Z",
"url": "https://files.pythonhosted.org/packages/d9/e0/89985a8a89ff0909739bcca1f498c0cf9c92ad59f032161a07e784cdff41/pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97231d1eb0c923503b22688563e14b24c638a46f95fe690e74e7152d3a039825",
"md5": "9c74e58935428f9d9d5ead928135a171",
"sha256": "f829f593a9ccb1fca8d9e98ef76bed89081c2c8acbdcf6ce230a27b8b5d7d9c0"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9c74e58935428f9d9d5ead928135a171",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1848119,
"upload_time": "2024-11-04T15:00:28",
"upload_time_iso_8601": "2024-11-04T15:00:28.727019Z",
"url": "https://files.pythonhosted.org/packages/97/23/1d1eb0c923503b22688563e14b24c638a46f95fe690e74e7152d3a039825/pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93c779736d00f887f2c159328dcc968962eccd4ed3ba249ba2c5f2f952b86940",
"md5": "2708024427f0bd6213d58daf9e2985c0",
"sha256": "9965d2b196e64f1a008b1ef6d1cdb7d4c9da1ea757f49428d0ec497c766f50ad"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2708024427f0bd6213d58daf9e2985c0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2031176,
"upload_time": "2024-11-04T15:00:30",
"upload_time_iso_8601": "2024-11-04T15:00:30.468002Z",
"url": "https://files.pythonhosted.org/packages/93/c7/79736d00f887f2c159328dcc968962eccd4ed3ba249ba2c5f2f952b86940/pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7299a39255cd98a09926b4dbe4df3930b46f0ac2c821e50a0d799a7644150dd9",
"md5": "ce4f87f572ba23f894b569d3ff302801",
"sha256": "f2279b4086e698aa6c21a1e4987530492704d7bbee696b251c00e26bd37d9037"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ce4f87f572ba23f894b569d3ff302801",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2669743,
"upload_time": "2024-11-04T15:00:32",
"upload_time_iso_8601": "2024-11-04T15:00:32.129971Z",
"url": "https://files.pythonhosted.org/packages/72/99/a39255cd98a09926b4dbe4df3930b46f0ac2c821e50a0d799a7644150dd9/pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab4baae7b4d8cbf9542931ee03a7427dc1be65415b74952cce5acfb9b09953ac",
"md5": "1a02ad0fe7bfa653fc8b2dad25853c0c",
"sha256": "997b1bd0605a5e7b2509ed5642f9a3fe3078abfca5e4c940dbd572df815a7559"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1a02ad0fe7bfa653fc8b2dad25853c0c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2151596,
"upload_time": "2024-11-04T15:00:33",
"upload_time_iso_8601": "2024-11-04T15:00:33.955875Z",
"url": "https://files.pythonhosted.org/packages/ab/4b/aae7b4d8cbf9542931ee03a7427dc1be65415b74952cce5acfb9b09953ac/pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db4d934a077df4e5b8423d9d01a4227696a207347e50e1aed0fe7fa16d9776a4",
"md5": "6a7d57f67358d80c4dce11a7128faa0f",
"sha256": "0101d0b5a333a14d95a109f82ca95fe2ce34b4e48fd7dbc0fbe1a4e623aa94c7"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "6a7d57f67358d80c4dce11a7128faa0f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1984595,
"upload_time": "2024-11-04T15:00:35",
"upload_time_iso_8601": "2024-11-04T15:00:35.599617Z",
"url": "https://files.pythonhosted.org/packages/db/4d/934a077df4e5b8423d9d01a4227696a207347e50e1aed0fe7fa16d9776a4/pydantic_core-2.26.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e8195768a47c03e931111ffe0cff174af3143cb35df5133a9b87ea9c5a3b6b6",
"md5": "5583640a7df344d4054d6fd0655f5b5b",
"sha256": "32c0c99180cecd8fb1c91b9695873b0ff9bf381518977776757b253291cf0235"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "5583640a7df344d4054d6fd0655f5b5b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1994206,
"upload_time": "2024-11-04T15:00:38",
"upload_time_iso_8601": "2024-11-04T15:00:38.076010Z",
"url": "https://files.pythonhosted.org/packages/1e/81/95768a47c03e931111ffe0cff174af3143cb35df5133a9b87ea9c5a3b6b6/pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a824c543164a6bb32f50f64c6a93baf1d746c3192516f75f1997904128ed2d59",
"md5": "5a79d0eb8158c8e7c863e770f72dbd9b",
"sha256": "4e437d26da787b3ad8b96cac47d00d3786457d68b4e2f5d7ee03a9a2d4bc12ab"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "5a79d0eb8158c8e7c863e770f72dbd9b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2083907,
"upload_time": "2024-11-04T15:00:39",
"upload_time_iso_8601": "2024-11-04T15:00:39.726173Z",
"url": "https://files.pythonhosted.org/packages/a8/24/c543164a6bb32f50f64c6a93baf1d746c3192516f75f1997904128ed2d59/pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5e3430cedbe34f300ae0448c20ecf95cff94214ea90cf47df93a16933149d1b",
"md5": "7ff4a6220c1c10cf2a602ecd228f6071",
"sha256": "04d64cb57f9ebde2c88976ef7846a915e7a7e74944d7c1d674314bc1e38b404c"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "7ff4a6220c1c10cf2a602ecd228f6071",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2149497,
"upload_time": "2024-11-04T15:00:41",
"upload_time_iso_8601": "2024-11-04T15:00:41.464995Z",
"url": "https://files.pythonhosted.org/packages/b5/e3/430cedbe34f300ae0448c20ecf95cff94214ea90cf47df93a16933149d1b/pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d0c02259f30d769691b75e30c2fc50959a2a7a671988853e4f3d0fb591286ee",
"md5": "45f4abf5e1dac5e6709caa1345349814",
"sha256": "023bdce63154fa2285d236b350723c82bc76d051e60de6f761441e9680c8a940"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-none-win32.whl",
"has_sig": false,
"md5_digest": "45f4abf5e1dac5e6709caa1345349814",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1829476,
"upload_time": "2024-11-04T15:00:43",
"upload_time_iso_8601": "2024-11-04T15:00:43.725302Z",
"url": "https://files.pythonhosted.org/packages/4d/0c/02259f30d769691b75e30c2fc50959a2a7a671988853e4f3d0fb591286ee/pydantic_core-2.26.0-cp313-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1077b64e921a4c1ca734bc0f3434f5a2769533f7bfb2b77598c84af4f60954da",
"md5": "f38b80aff6c771bf8bade81bb869743d",
"sha256": "2bfeffdee3175c2593f0e4371c5b44da2f8044d5f5dd98be665fc8a6464008c8"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "f38b80aff6c771bf8bade81bb869743d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1973440,
"upload_time": "2024-11-04T15:00:45",
"upload_time_iso_8601": "2024-11-04T15:00:45.535542Z",
"url": "https://files.pythonhosted.org/packages/10/77/b64e921a4c1ca734bc0f3434f5a2769533f7bfb2b77598c84af4f60954da/pydantic_core-2.26.0-cp313-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1454ae6e6a84aea25c7def98a2f488c41e46318ccc2ce0479b0e4e697cb13263",
"md5": "e535cdf72a6d9c2c16e9c0ed19efdf6a",
"sha256": "3a4c5666eed3d8e9c9b89dd56a96e3cbc261c239c92a87a15fc55affe5d379f9"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp313-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "e535cdf72a6d9c2c16e9c0ed19efdf6a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1876098,
"upload_time": "2024-11-04T15:00:47",
"upload_time_iso_8601": "2024-11-04T15:00:47.370072Z",
"url": "https://files.pythonhosted.org/packages/14/54/ae6e6a84aea25c7def98a2f488c41e46318ccc2ce0479b0e4e697cb13263/pydantic_core-2.26.0-cp313-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27b98d3c2eaf5adbf12fe1d7e076e0996788d118f1a9f971644dc6b572079fc3",
"md5": "f764651da9c9e25e0932532e06f08d6d",
"sha256": "3d8b599013a80e591eff37ec3e0151b2d86d7feeadd77f1b11061bd7987d08b9"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f764651da9c9e25e0932532e06f08d6d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1897923,
"upload_time": "2024-11-04T15:00:49",
"upload_time_iso_8601": "2024-11-04T15:00:49.131590Z",
"url": "https://files.pythonhosted.org/packages/27/b9/8d3c2eaf5adbf12fe1d7e076e0996788d118f1a9f971644dc6b572079fc3/pydantic_core-2.26.0-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c611ee18dc180c4be2dc105414255c5dbb1305fc6d7bce8d6acf61f24c7d63a7",
"md5": "0bba623d69c9c47cc8629fdf8d4c42b5",
"sha256": "d6bc543db35ddb53995e0f2a0f18fb0f3ad55e73c38c414a23f4ae8592bd42c0"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0bba623d69c9c47cc8629fdf8d4c42b5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1776299,
"upload_time": "2024-11-04T15:00:51",
"upload_time_iso_8601": "2024-11-04T15:00:51.673772Z",
"url": "https://files.pythonhosted.org/packages/c6/11/ee18dc180c4be2dc105414255c5dbb1305fc6d7bce8d6acf61f24c7d63a7/pydantic_core-2.26.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4337f80490467635088e7b7acc4403720349d71b29ebca3c97fa8b1ffa0bd9e6",
"md5": "1e2d5dbd64aea1cf2b3feaddcf867f6a",
"sha256": "a4a8a96b6a228c597fa232ba3e4ddc482abb1cd69e340ab0418195e4c520cb1b"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1e2d5dbd64aea1cf2b3feaddcf867f6a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1829974,
"upload_time": "2024-11-04T15:00:54",
"upload_time_iso_8601": "2024-11-04T15:00:54.147747Z",
"url": "https://files.pythonhosted.org/packages/43/37/f80490467635088e7b7acc4403720349d71b29ebca3c97fa8b1ffa0bd9e6/pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1ff68252c851fd46bb03238aaa959904b8e3ae81a4e2f53a31e18783e86e6e9c",
"md5": "4d27c9dbd511495ef170fd58fb5302e9",
"sha256": "b26991a3fb41ebb73acba7a7811787ba5ed8176c557708c68aef46d9fcbfed20"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4d27c9dbd511495ef170fd58fb5302e9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1849716,
"upload_time": "2024-11-04T15:00:55",
"upload_time_iso_8601": "2024-11-04T15:00:55.981998Z",
"url": "https://files.pythonhosted.org/packages/1f/f6/8252c851fd46bb03238aaa959904b8e3ae81a4e2f53a31e18783e86e6e9c/pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3dc249b38fdf8e0754d4526e26b7ada6bce652676cead013ebdd3c08f03dc048",
"md5": "a35aaf300bd393744f381e72459c5a38",
"sha256": "b3b608c1b08671c111ff41aa167994438de0633bb321fae1700bcbe4608b5a6c"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a35aaf300bd393744f381e72459c5a38",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2037368,
"upload_time": "2024-11-04T15:00:58",
"upload_time_iso_8601": "2024-11-04T15:00:58.836676Z",
"url": "https://files.pythonhosted.org/packages/3d/c2/49b38fdf8e0754d4526e26b7ada6bce652676cead013ebdd3c08f03dc048/pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c835fca93497d74c1d8ab15a5b09a70b665bfa485a1be9fa1b75cceb6165382d",
"md5": "2b7fbaa355822508ad1f691a15fc9d51",
"sha256": "e6b38f53dec01ea7e203b211b33f4019100e83465d4d935ab9120d820a0ea4d3"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2b7fbaa355822508ad1f691a15fc9d51",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2768624,
"upload_time": "2024-11-04T15:01:00",
"upload_time_iso_8601": "2024-11-04T15:01:00.638861Z",
"url": "https://files.pythonhosted.org/packages/c8/35/fca93497d74c1d8ab15a5b09a70b665bfa485a1be9fa1b75cceb6165382d/pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c396a513873852f4e51a4dd0ab5ae1b1a8a781ad2761beb8d6313484677b7fa5",
"md5": "624c840a701954dfe0fbef6c4ec810de",
"sha256": "bd41f98f58819d6bf16b2e50c5f67d8ece09c99e41a950cf5ed76b5b4586814d"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "624c840a701954dfe0fbef6c4ec810de",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2131939,
"upload_time": "2024-11-04T15:01:03",
"upload_time_iso_8601": "2024-11-04T15:01:03.099747Z",
"url": "https://files.pythonhosted.org/packages/c3/96/a513873852f4e51a4dd0ab5ae1b1a8a781ad2761beb8d6313484677b7fa5/pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b04483552a52f48fac7a9f8b20f013ba097d07d48b74aa9e5ca1e651243e770c",
"md5": "3b6f5a96f11881802a2657d5854dd46d",
"sha256": "fae508dd35f42adc03dba8bd0f6b18bfea23edc41ca5c6c75cc6262800929556"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "3b6f5a96f11881802a2657d5854dd46d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1981995,
"upload_time": "2024-11-04T15:01:05",
"upload_time_iso_8601": "2024-11-04T15:01:05.057886Z",
"url": "https://files.pythonhosted.org/packages/b0/44/83552a52f48fac7a9f8b20f013ba097d07d48b74aa9e5ca1e651243e770c/pydantic_core-2.26.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2fcb590f38669630b5f0cda71423d1420df774fbb6467c2b345b67efc12edcbd",
"md5": "39f15a3d5958f401c59a9c9e527a2b07",
"sha256": "2a3051216d2e1daf1ee22426452e05c8fdb5f476e9806cec67b1534391d2d549"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "39f15a3d5958f401c59a9c9e527a2b07",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1990851,
"upload_time": "2024-11-04T15:01:07",
"upload_time_iso_8601": "2024-11-04T15:01:07.690026Z",
"url": "https://files.pythonhosted.org/packages/2f/cb/590f38669630b5f0cda71423d1420df774fbb6467c2b345b67efc12edcbd/pydantic_core-2.26.0-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "521732440909ff99cc9eb0e4dd929ead0dd7a886b2ebeaf2aa4f02d8380da429",
"md5": "bc6a04b7da57e6a870fc7e1f715078b5",
"sha256": "e2255b4b90746666e4725c7b8e26747d5396ef1ef724fd88be8dde8e9a8f5029"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-cp38-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "bc6a04b7da57e6a870fc7e1f715078b5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2087910,
"upload_time": "2024-11-04T15:01:09",
"upload_time_iso_8601": "2024-11-04T15:01:09.538392Z",
"url": "https://files.pythonhosted.org/packages/52/17/32440909ff99cc9eb0e4dd929ead0dd7a886b2ebeaf2aa4f02d8380da429/pydantic_core-2.26.0-cp38-cp38-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7807e88127e3842c4da952647f003e3877d44b079e19c51c5a73e656f2eae565",
"md5": "682e7df8e2bb4aea27c5641d02ac7ba4",
"sha256": "f994cfd732d56e2ed5b44e018d131c8d2273b00121b720d84a3d8b88f2a7d1c9"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "682e7df8e2bb4aea27c5641d02ac7ba4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2141511,
"upload_time": "2024-11-04T15:01:11",
"upload_time_iso_8601": "2024-11-04T15:01:11.380115Z",
"url": "https://files.pythonhosted.org/packages/78/07/e88127e3842c4da952647f003e3877d44b079e19c51c5a73e656f2eae565/pydantic_core-2.26.0-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "800d7c3898ea74cc1b978fcc3d3c1f807506c1450f5b0e906e40b4799a9f4cfb",
"md5": "c063ec8de7b534410b4120d5410bb688",
"sha256": "1be8973dcda3f6336acf1939e9e948f2611b27ddd9454f0ed58586710c248d75"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "c063ec8de7b534410b4120d5410bb688",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1814396,
"upload_time": "2024-11-04T15:01:13",
"upload_time_iso_8601": "2024-11-04T15:01:13.239759Z",
"url": "https://files.pythonhosted.org/packages/80/0d/7c3898ea74cc1b978fcc3d3c1f807506c1450f5b0e906e40b4799a9f4cfb/pydantic_core-2.26.0-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e47f3cc5e8e2ac02542c5a0f1eb6959d7c32cc7e331ab23bc746d07d001bbf98",
"md5": "2e24a3c46b82203e0d500f022ff3d748",
"sha256": "27b71639a044c816b87498d006d2a6887a8fc1f56ffabad34c54da97eca69aae"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "2e24a3c46b82203e0d500f022ff3d748",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1969209,
"upload_time": "2024-11-04T15:01:15",
"upload_time_iso_8601": "2024-11-04T15:01:15.577032Z",
"url": "https://files.pythonhosted.org/packages/e4/7f/3cc5e8e2ac02542c5a0f1eb6959d7c32cc7e331ab23bc746d07d001bbf98/pydantic_core-2.26.0-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "495398b7ce384bcf62c4298e0eb5102dbe532990f5328454ab1d0feba5d9f85f",
"md5": "5374868b0fd20dd8ce97c29980f9a83d",
"sha256": "df2054459dd0373cf6d9b6e374cd952c8018fb135b9162e1c8e1ee60456c3c22"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "5374868b0fd20dd8ce97c29980f9a83d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1894512,
"upload_time": "2024-11-04T15:01:17",
"upload_time_iso_8601": "2024-11-04T15:01:17.979611Z",
"url": "https://files.pythonhosted.org/packages/49/53/98b7ce384bcf62c4298e0eb5102dbe532990f5328454ab1d0feba5d9f85f/pydantic_core-2.26.0-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f5ff5b44c10765da87b888525bedc3933efd1c3b05e6fa6bda86e87aadb5214",
"md5": "21cd9c5796f3ba6580e24c396cc4a381",
"sha256": "8e9bd70d40d2b6d91186e886e8634e8f4d29122fb918f36c88789f0a8dc16f08"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "21cd9c5796f3ba6580e24c396cc4a381",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1772431,
"upload_time": "2024-11-04T15:01:19",
"upload_time_iso_8601": "2024-11-04T15:01:19.935098Z",
"url": "https://files.pythonhosted.org/packages/3f/5f/f5b44c10765da87b888525bedc3933efd1c3b05e6fa6bda86e87aadb5214/pydantic_core-2.26.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "acba8a4db06773ee738ba7856a17cb739ee89e1453dc95248dd4cbfb7971e749",
"md5": "dc9a3664d296048d6dd16976c1ecc05e",
"sha256": "b1fc6d44b5fa4f5805ff8beb03250bd4c3d014658afca73926d1a0ea06cfec9b"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "dc9a3664d296048d6dd16976c1ecc05e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1828049,
"upload_time": "2024-11-04T15:01:21",
"upload_time_iso_8601": "2024-11-04T15:01:21.849678Z",
"url": "https://files.pythonhosted.org/packages/ac/ba/8a4db06773ee738ba7856a17cb739ee89e1453dc95248dd4cbfb7971e749/pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86b8938de6cfe430a57b3d080556352c99479f6b9687ed578e03c27b74999db7",
"md5": "593a8c34174e332d21f28ca5285a4cf2",
"sha256": "27e0ccdad2db7159b766061e947b568ef7cd3c209f7722b36867a5a4184c0a1d"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "593a8c34174e332d21f28ca5285a4cf2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1848538,
"upload_time": "2024-11-04T15:01:23",
"upload_time_iso_8601": "2024-11-04T15:01:23.838379Z",
"url": "https://files.pythonhosted.org/packages/86/b8/938de6cfe430a57b3d080556352c99479f6b9687ed578e03c27b74999db7/pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e424f461a6bc0aa524eb8674a56592bdcf94a42c0e7989731eec16080bc85dda",
"md5": "b9faa79af21822ff05e44588afe22de0",
"sha256": "204cf1a3aac1339ac2926cce415f5b5e4a2cb1eb7bd6c92aef4cd3c0040b0faa"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b9faa79af21822ff05e44588afe22de0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2034775,
"upload_time": "2024-11-04T15:01:26",
"upload_time_iso_8601": "2024-11-04T15:01:26.038335Z",
"url": "https://files.pythonhosted.org/packages/e4/24/f461a6bc0aa524eb8674a56592bdcf94a42c0e7989731eec16080bc85dda/pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0b8067a293562fb3bb403aaa479dfe743b5223c6716445ead931736e53cdd94e",
"md5": "f5c42cc11f9962920c703f357cc90a8c",
"sha256": "a860c3fd2bd3c521c189b4af32a12c3f16e342c97b395f220a0822bc5c18374e"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f5c42cc11f9962920c703f357cc90a8c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2770496,
"upload_time": "2024-11-04T15:01:28",
"upload_time_iso_8601": "2024-11-04T15:01:28.116492Z",
"url": "https://files.pythonhosted.org/packages/0b/80/67a293562fb3bb403aaa479dfe743b5223c6716445ead931736e53cdd94e/pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e0ebc173a2cd7322464dabc6a535c79f4e5894244066dbfae15d375b6fdc492",
"md5": "d09f33f7d45427d983f13b5991bb273d",
"sha256": "a6c39003ca3411e150dadd991ff0c12e15c01609ad3c387fc4b92b5773eebfa9"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d09f33f7d45427d983f13b5991bb273d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2128579,
"upload_time": "2024-11-04T15:01:30",
"upload_time_iso_8601": "2024-11-04T15:01:30.205289Z",
"url": "https://files.pythonhosted.org/packages/6e/0e/bc173a2cd7322464dabc6a535c79f4e5894244066dbfae15d375b6fdc492/pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0400818125d9194c7ba7f2f573e147446cb164a02158131f7c3d96cb5ddd2ce1",
"md5": "e30e84867591010b8fb07d142142b72c",
"sha256": "cc607fad021f699f6891056a39d419cfb572dfde2d59c5062f60dc1508264e95"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e30e84867591010b8fb07d142142b72c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1980265,
"upload_time": "2024-11-04T15:01:32",
"upload_time_iso_8601": "2024-11-04T15:01:32.165249Z",
"url": "https://files.pythonhosted.org/packages/04/00/818125d9194c7ba7f2f573e147446cb164a02158131f7c3d96cb5ddd2ce1/pydantic_core-2.26.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0961f648f6aea97129841ae26de6b6a32057aea37d2c26f4f897533e70bb469e",
"md5": "9225a5cbf803c834b933f5c46d397aba",
"sha256": "f6b1b04c4c0f56fd7dd8d95475bcc4da816a79cfcebd5eb030794fe293c23203"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "9225a5cbf803c834b933f5c46d397aba",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1990624,
"upload_time": "2024-11-04T15:01:34",
"upload_time_iso_8601": "2024-11-04T15:01:34.846658Z",
"url": "https://files.pythonhosted.org/packages/09/61/f648f6aea97129841ae26de6b6a32057aea37d2c26f4f897533e70bb469e/pydantic_core-2.26.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4dd648f6e6e362093aa0d66a26f304fd7b31363d8b645966335fbec00430c952",
"md5": "ca9bd2cac11b6be77821695786eabf39",
"sha256": "af445f7740ed3549f9478e3665273c47532c17ffa8fd5f6e20742fd7ae7fe487"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-cp39-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "ca9bd2cac11b6be77821695786eabf39",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2087306,
"upload_time": "2024-11-04T15:01:36",
"upload_time_iso_8601": "2024-11-04T15:01:36.927976Z",
"url": "https://files.pythonhosted.org/packages/4d/d6/48f6e6e362093aa0d66a26f304fd7b31363d8b645966335fbec00430c952/pydantic_core-2.26.0-cp39-cp39-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf4b77a84430977389640da6c934ff01849ea24d60fffff15c8dad17d5826e23",
"md5": "83ac78af6994e061488505413a513cdc",
"sha256": "2d816f3f80e5ccec2c5ffccd2fa57f36e9fb6b15d7c210ad793cdfded7feedfc"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "83ac78af6994e061488505413a513cdc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2139932,
"upload_time": "2024-11-04T15:01:38",
"upload_time_iso_8601": "2024-11-04T15:01:38.911905Z",
"url": "https://files.pythonhosted.org/packages/bf/4b/77a84430977389640da6c934ff01849ea24d60fffff15c8dad17d5826e23/pydantic_core-2.26.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "557b4e8717fb6e769fef903d8b7fe534687a2aab6ecca277d187fc1d462fd239",
"md5": "5bd16345eb7f474369c450e7d8fd67ea",
"sha256": "8f3622aee8d2411c894721110a196abc1779eb0b271da4700bbf75a3e7b0c535"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "5bd16345eb7f474369c450e7d8fd67ea",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1812254,
"upload_time": "2024-11-04T15:01:41",
"upload_time_iso_8601": "2024-11-04T15:01:41.168765Z",
"url": "https://files.pythonhosted.org/packages/55/7b/4e8717fb6e769fef903d8b7fe534687a2aab6ecca277d187fc1d462fd239/pydantic_core-2.26.0-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d2cfeebdb8ff9ea0fa07873351af763051d29f3022590396b65af9c33003f83",
"md5": "ca334caccb8208ba289a4021ec109771",
"sha256": "2a8af9ada5bb86016cbe18861aacdea64aa2572e6d6ec8a9ad687f97c4cf50a5"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "ca334caccb8208ba289a4021ec109771",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1973310,
"upload_time": "2024-11-04T15:01:43",
"upload_time_iso_8601": "2024-11-04T15:01:43.158282Z",
"url": "https://files.pythonhosted.org/packages/8d/2c/feebdb8ff9ea0fa07873351af763051d29f3022590396b65af9c33003f83/pydantic_core-2.26.0-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17b8b33780ddec0a314ed0b064bdf1fa4dca315cc802e1a529e67573d19c3588",
"md5": "4dea62c54912c299ba5d9da9db66f2fd",
"sha256": "54c52a1ce830de3d93ec1d2af391a0d3f3255092c5ebf160be9e117796e3d472"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "4dea62c54912c299ba5d9da9db66f2fd",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1888689,
"upload_time": "2024-11-04T15:01:45",
"upload_time_iso_8601": "2024-11-04T15:01:45.211130Z",
"url": "https://files.pythonhosted.org/packages/17/b8/b33780ddec0a314ed0b064bdf1fa4dca315cc802e1a529e67573d19c3588/pydantic_core-2.26.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2c14832a63ac62fef9cc4a9f0aaaafa6cd73c1fe52f1e9dafb08a7e08dacb7e",
"md5": "36ea5b5061293a1cdbda9b87bacf19c0",
"sha256": "727282cc2ac6ab40861e8e461b8c75ca4c60b95faae631d119e780993a14c5f7"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "36ea5b5061293a1cdbda9b87bacf19c0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1766894,
"upload_time": "2024-11-04T15:01:47",
"upload_time_iso_8601": "2024-11-04T15:01:47.323803Z",
"url": "https://files.pythonhosted.org/packages/e2/c1/4832a63ac62fef9cc4a9f0aaaafa6cd73c1fe52f1e9dafb08a7e08dacb7e/pydantic_core-2.26.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a82deb8ca067e6eab0107400c3fecc711832071e94b5cff32c2b4e5528e06be",
"md5": "6f616446d7bc9f4cb73a45acab566613",
"sha256": "8bcf674bad21e3a4e83b4f4e214a3a689f0a3ff49f0d858738b68dddb5c301f6"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6f616446d7bc9f4cb73a45acab566613",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1821671,
"upload_time": "2024-11-04T15:01:49",
"upload_time_iso_8601": "2024-11-04T15:01:49.335169Z",
"url": "https://files.pythonhosted.org/packages/7a/82/deb8ca067e6eab0107400c3fecc711832071e94b5cff32c2b4e5528e06be/pydantic_core-2.26.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0b72b87a933aff11e4e2c66bff43f189f1a2e3c23918d0c50403254162128283",
"md5": "196f1cd63b64975ff6bfb202e000036d",
"sha256": "47d85c60fe46d1501af0007137553ae5fc1b8c6aa72ebf3b4bce806a983a163f"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "196f1cd63b64975ff6bfb202e000036d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1976420,
"upload_time": "2024-11-04T15:01:51",
"upload_time_iso_8601": "2024-11-04T15:01:51.442249Z",
"url": "https://files.pythonhosted.org/packages/0b/72/b87a933aff11e4e2c66bff43f189f1a2e3c23918d0c50403254162128283/pydantic_core-2.26.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "35b2a709852c2c9ed4319bafea82ca6db1be0d26e769cc5e0a3c5bad15680c4b",
"md5": "a5a91f7f2fe9054e92e875172ecdc493",
"sha256": "b26d88c9c8677699a9d134e4eac063662abe2b1053c9821adbd000a894f2d5ea"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "a5a91f7f2fe9054e92e875172ecdc493",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1973275,
"upload_time": "2024-11-04T15:01:53",
"upload_time_iso_8601": "2024-11-04T15:01:53.461981Z",
"url": "https://files.pythonhosted.org/packages/35/b2/a709852c2c9ed4319bafea82ca6db1be0d26e769cc5e0a3c5bad15680c4b/pydantic_core-2.26.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19dc230345e66e4ddb2949dc1c138f59c5746fce70a2ca913d3e0318d4a2b77f",
"md5": "f32f2da1a8b2915cfe8422a668f68398",
"sha256": "83fe1dcdf9faccfed14b60fd6ea0770814fb0510e7c5e9fb74d5713c2fa9f139"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "f32f2da1a8b2915cfe8422a668f68398",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1983613,
"upload_time": "2024-11-04T15:01:55",
"upload_time_iso_8601": "2024-11-04T15:01:55.593275Z",
"url": "https://files.pythonhosted.org/packages/19/dc/230345e66e4ddb2949dc1c138f59c5746fce70a2ca913d3e0318d4a2b77f/pydantic_core-2.26.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "574b7b05dcb18e69e250bf913d3276f26edf8263021f8cb9f48e7afa610de3f7",
"md5": "aa3170eb8bc4dff65714a601b390b115",
"sha256": "114059f663569af42d90d8771f33bb0526eb8f89dbd0ff0f448f7d549cb28c03"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "aa3170eb8bc4dff65714a601b390b115",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 2072132,
"upload_time": "2024-11-04T15:01:57",
"upload_time_iso_8601": "2024-11-04T15:01:57.702257Z",
"url": "https://files.pythonhosted.org/packages/57/4b/7b05dcb18e69e250bf913d3276f26edf8263021f8cb9f48e7afa610de3f7/pydantic_core-2.26.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "074df1fc2f2075372cc1b0aa9a1ac77591ce32fc2dd9abdffb978566216569af",
"md5": "a1c45853287b2e02816d94eff5be773f",
"sha256": "7daed5575b5163016bceeed0c6a31d508c4e4aca4eef6ecdb5266f07130ae988"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a1c45853287b2e02816d94eff5be773f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 2128921,
"upload_time": "2024-11-04T15:01:59",
"upload_time_iso_8601": "2024-11-04T15:01:59.798095Z",
"url": "https://files.pythonhosted.org/packages/07/4d/f1fc2f2075372cc1b0aa9a1ac77591ce32fc2dd9abdffb978566216569af/pydantic_core-2.26.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c81cbdeb96342d742f6ab1dd26f00154bebf4844069256a2c252ddc159912d2",
"md5": "ee951d486f1a2adeb1a4386f41e6198a",
"sha256": "56d163e491360cb7806f3b0c9325706b1794a217e5dea7bd6462730151e655c6"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "ee951d486f1a2adeb1a4386f41e6198a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1994387,
"upload_time": "2024-11-04T15:02:02",
"upload_time_iso_8601": "2024-11-04T15:02:02.044180Z",
"url": "https://files.pythonhosted.org/packages/9c/81/cbdeb96342d742f6ab1dd26f00154bebf4844069256a2c252ddc159912d2/pydantic_core-2.26.0-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd4feea9d19296819708cee80accaaf5c6ce4c050601b3e8fcb5c2c71a0bcdef",
"md5": "7cd4a55c37c1cda4a40d0faebb485f1e",
"sha256": "ca8231f51600fa4f5116eeb7d491f0d535f2a3fe8d5fff7c40febf90d3ebccfb"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "7cd4a55c37c1cda4a40d0faebb485f1e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1889352,
"upload_time": "2024-11-04T15:02:04",
"upload_time_iso_8601": "2024-11-04T15:02:04.159933Z",
"url": "https://files.pythonhosted.org/packages/dd/4f/eea9d19296819708cee80accaaf5c6ce4c050601b3e8fcb5c2c71a0bcdef/pydantic_core-2.26.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e986a090c4bd828c8563522c308a287f9c0247c7c98b3eec9f07c9895a2ca6bc",
"md5": "1dcea3976a7866e536ffc4f49a31e226",
"sha256": "fbc787251b9c6180202b8496ce5dbff51c1ec78e70f95e073a2f495455363def"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1dcea3976a7866e536ffc4f49a31e226",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1767258,
"upload_time": "2024-11-04T15:02:06",
"upload_time_iso_8601": "2024-11-04T15:02:06.177924Z",
"url": "https://files.pythonhosted.org/packages/e9/86/a090c4bd828c8563522c308a287f9c0247c7c98b3eec9f07c9895a2ca6bc/pydantic_core-2.26.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29f317557f7a26de53edbdfa476d4d1c7889ae3a1045aacfedab7a297defbfb3",
"md5": "980b3ebd06d25643159f5229f4f3721d",
"sha256": "3380e05787a7fc9a41fe0e343fbe8d160bfb28bcd1bc96d7671576e0ee5dea30"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "980b3ebd06d25643159f5229f4f3721d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1821675,
"upload_time": "2024-11-04T15:02:08",
"upload_time_iso_8601": "2024-11-04T15:02:08.293685Z",
"url": "https://files.pythonhosted.org/packages/29/f3/17557f7a26de53edbdfa476d4d1c7889ae3a1045aacfedab7a297defbfb3/pydantic_core-2.26.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f3f77636817418ef7e90050fd7fffe583991dcf4520360ac0395d649a6f2e7f",
"md5": "bbfc8d615f82f6a75a3762d592cb849f",
"sha256": "785d0b12c29f2b6cb5f1f0ce1a239bd7ac13fd978239b14e0e23a40487ecc212"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bbfc8d615f82f6a75a3762d592cb849f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1976431,
"upload_time": "2024-11-04T15:02:10",
"upload_time_iso_8601": "2024-11-04T15:02:10.614556Z",
"url": "https://files.pythonhosted.org/packages/8f/3f/77636817418ef7e90050fd7fffe583991dcf4520360ac0395d649a6f2e7f/pydantic_core-2.26.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce11f3e042b37e43ea617f803ec04d374d6185622988d6652e0430a3e12188d0",
"md5": "4f35aa0a82703a45a658012241748dc2",
"sha256": "56c6607026c311169a079bc6dcd8f6a7a2e29ae4ad13b145893eac6f1c6941c4"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "4f35aa0a82703a45a658012241748dc2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1973097,
"upload_time": "2024-11-04T15:02:13",
"upload_time_iso_8601": "2024-11-04T15:02:13.562822Z",
"url": "https://files.pythonhosted.org/packages/ce/11/f3e042b37e43ea617f803ec04d374d6185622988d6652e0430a3e12188d0/pydantic_core-2.26.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a79c7919e081c9d8c3fddba19cb933790875d402bfb110cf34a854f100da9a93",
"md5": "ab8405b625ee547acdcee6a9ceecaa8b",
"sha256": "1ea69ae5c52fa6b1e1ccf9a278d5f8f1a9891f912693ed3c00b88b0ceea11d4f"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ab8405b625ee547acdcee6a9ceecaa8b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1983654,
"upload_time": "2024-11-04T15:02:15",
"upload_time_iso_8601": "2024-11-04T15:02:15.838102Z",
"url": "https://files.pythonhosted.org/packages/a7/9c/7919e081c9d8c3fddba19cb933790875d402bfb110cf34a854f100da9a93/pydantic_core-2.26.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26b43015c890ea6617efbec9be73d001a38db37833bd959ef6811c1574aa2a5a",
"md5": "317391c34ab9a9f823d8f1cd9fb5095b",
"sha256": "3c8e7e2f733a04cc96e7e0913b95906ffd6300cf84c9dac4433a243bf2d1aed5"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "317391c34ab9a9f823d8f1cd9fb5095b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2072068,
"upload_time": "2024-11-04T15:02:18",
"upload_time_iso_8601": "2024-11-04T15:02:18.050875Z",
"url": "https://files.pythonhosted.org/packages/26/b4/3015c890ea6617efbec9be73d001a38db37833bd959ef6811c1574aa2a5a/pydantic_core-2.26.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a657641001b6428e851562f873294a971fe24b04c7a7a65953723a1d2d49d35f",
"md5": "f891ce13b5e1b96d8c13609ba6485ee1",
"sha256": "8a0300cdbea0d4568b39fc7be3436cc702f9ee1655b8dd899ec874ff2b663a4b"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "f891ce13b5e1b96d8c13609ba6485ee1",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 2129108,
"upload_time": "2024-11-04T15:02:20",
"upload_time_iso_8601": "2024-11-04T15:02:20.246227Z",
"url": "https://files.pythonhosted.org/packages/a6/57/641001b6428e851562f873294a971fe24b04c7a7a65953723a1d2d49d35f/pydantic_core-2.26.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ef19919d760255c94638a14b85626b021c127771e5caf787a7a43db47c2d11c",
"md5": "d71ffff69cc5e9982c653226158905b6",
"sha256": "b42f4de434e6e7a57c127b519f907c4928be33fd1db8000f2b74992cb031decb"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "d71ffff69cc5e9982c653226158905b6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1994858,
"upload_time": "2024-11-04T15:02:22",
"upload_time_iso_8601": "2024-11-04T15:02:22.859372Z",
"url": "https://files.pythonhosted.org/packages/2e/f1/9919d760255c94638a14b85626b021c127771e5caf787a7a43db47c2d11c/pydantic_core-2.26.0-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "98850ac4f8fc632fa1bb3f473e4dfb1cd520ede11179f76a028edfd2ca989ed4",
"md5": "2b49e6fa58877d2de90a51da9cf2ff12",
"sha256": "4578d4914bdbbd18963b4c611fa39d912d0dbeeffef8211fb546e45176a72d1d"
},
"downloads": -1,
"filename": "pydantic_core-2.26.0.tar.gz",
"has_sig": false,
"md5_digest": "2b49e6fa58877d2de90a51da9cf2ff12",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 411154,
"upload_time": "2024-11-04T15:02:25",
"upload_time_iso_8601": "2024-11-04T15:02:25.069077Z",
"url": "https://files.pythonhosted.org/packages/98/85/0ac4f8fc632fa1bb3f473e4dfb1cd520ede11179f76a028edfd2ca989ed4/pydantic_core-2.26.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-04 15:02:25",
"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"
}