Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
PyPI

pydantic 2.11.7

pip install pydantic

Latest version

Released:

Data validation using Python type hints

Verified details

These details have beenverified by PyPI
Project links
Owner
GitHub Statistics
Maintainers
Avatar for dmontagu from gravatar.comdmontagu

Project description

Pydantic

CICoveragepypiCondaForgedownloadsversionslicensePydantic v2llms.txt

Data validation using Python type hints.

Fast and extensible, Pydantic plays nicely with your linters/IDE/brain.Define how data should be in pure, canonical Python 3.9+; validate it with Pydantic.

Pydantic Logfire :fire:

We've recently launched Pydantic Logfire to help you monitor your applications.Learn more

Pydantic V1.10 vs. V2

Pydantic V2 is a ground-up rewrite that offers many new features, performance improvements, and some breaking changes compared to Pydantic V1.

If you're using Pydantic V1 you may want to look at thepydantic V1.10 Documentation or,1.10.X-fixes git branch. Pydantic V2 also ships with the latest version of Pydantic V1 built in so that you can incrementally upgrade your code base and projects:from pydantic import v1 as pydantic_v1.

Help

Seedocumentation for more details.

Installation

Install usingpip install -U pydantic orconda install pydantic -c conda-forge.For more installation options to make Pydantic even faster,see theInstall section in the documentation.

A Simple Example

fromdatetimeimportdatetimefromtypingimportOptionalfrompydanticimportBaseModelclassUser(BaseModel):id:intname:str='John Doe'signup_ts:Optional[datetime]=Nonefriends:list[int]=[]external_data={'id':'123','signup_ts':'2017-06-01 12:22','friends':[1,'2',b'3']}user=User(**external_data)print(user)#> User id=123 name='John Doe' signup_ts=datetime.datetime(2017, 6, 1, 12, 22) friends=[1, 2, 3]print(user.id)#> 123

Contributing

For guidance on setting up a development environment and how to make acontribution to Pydantic, seeContributing to Pydantic.

Reporting a Security Vulnerability

See oursecurity policy.

Changelog

v2.11.7 (2025-06-14)

GitHub release

What's Changed

Fixes

  • CopyFieldInfo instance if necessary duringFieldInfo build by@Viicos in#11898

v2.11.6 (2025-06-13)

GitHub release

What's Changed

Fixes

  • Rebuild dataclass fields before schema generation by@Viicos in#11949
  • Always store the original field assignment onFieldInfo by@Viicos in#11946

v2.11.5 (2025-05-22)

GitHub release

What's Changed

Fixes

  • Check ifFieldInfo is complete after applying type variable map by@Viicos in#11855
  • Do not delete mock validator/serializer inmodel_rebuild() by@Viicos in#11890
  • Do not duplicate metadata on model rebuild by@Viicos in#11902

v2.11.4 (2025-04-29)

GitHub release

What's Changed

Packaging

Changes

  • Allow config and bases to be specified together increate_model() by@Viicos in#11714.This change was backported as it was previously possible (although not meant to be supported)to providemodel_config as a field, which would make it possible to provide both configurationand bases.

Fixes

v2.11.3 (2025-04-08)

GitHub release

What's Changed

Packaging

Fixes

  • Preserve field description when rebuilding model fields by@Viicos in#11698

v2.11.2 (2025-04-03)

GitHub release

What's Changed

Fixes

  • Bumppydantic-core to v2.33.1 by@Viicos in#11678
  • Make sure__pydantic_private__ exists before setting private attributes by@Viicos in#11666
  • Do not overrideFieldInfo._complete when using field from parent class by@Viicos in#11668
  • Provide the available definitions when applying discriminated unions by@Viicos in#11670
  • Do not expand root type in the mypy plugin for variables by@Viicos in#11676
  • Mention the attribute name in model fields deprecation message by@Viicos in#11674
  • Properly validate parameterized mappings by@Viicos in#11658

v2.11.1 (2025-03-28)

GitHub release

What's Changed

Fixes

  • Do not override'definitions-ref' schemas containing serialization schemas or metadata by@Viicos in#11644

v2.11.0 (2025-03-27)

GitHub release

What's Changed

Pydantic v2.11 is a version strongly focused on build time performance of Pydantic models (and core schema generation in general).See theblog post for more details.

Packaging

New Features

  • Addencoded_string() method to the URL types by@YassinNouh21 in#11580
  • Add support fordefer_build with@validate_call decorator by@Viicos in#11584
  • Allow@with_config decorator to be used with keyword arguments by@Viicos in#11608
  • Simplify customization of default value inclusion in JSON Schema generation by@Viicos in#11634
  • Addgenerate_arguments_schema() function by@Viicos in#11572

Fixes

  • Allow generic typed dictionaries to be used for unpacked variadic keyword parameters by@Viicos in#11571
  • Fix runtime error when computing model string representation involving cached properties and self-referenced models by@Viicos in#11579
  • Preserve other steps when using the ellipsis in the pipeline API by@Viicos in#11626
  • Fix deferred discriminator application logic by@Viicos in#11591

New Contributors

v2.11.0b2 (2025-03-17)

GitHub release

What's Changed

Packaging

New Features

Fixes

  • FixNotRequired qualifier not taken into account in stringified annotation by@Viicos in#11559

New Contributors

v2.11.0b1 (2025-03-06)

GitHub release

What's Changed

Packaging

New Features

Changes

Performance

Fixes

New Contributors

v2.11.0a2 (2025-02-10)

GitHub release

What's Changed

Pydantic v2.11 is a version strongly focused on build time performance of Pydantic models (and core schema generation in general).This is another early alpha release, meant to collect early feedback from users having issues with core schema builds.

Packaging

Performance

Fixes

  • Use the correct JSON Schema mode when handling function schemas by@Viicos in#11367
  • Fix JSON Schema reference logic withexamples keys by@Viicos in#11366
  • Improve exception message when encountering recursion errors during type evaluation by@Viicos in#11356
  • Always includeadditionalProperties: True for arbitrary dictionary schemas by@austinyu in#11392
  • Exposefallback parameter in serialization methods by@Viicos in#11398
  • Fix path serialization behavior by@sydney-runkle in#11416

New Contributors

v2.11.0a1 (2025-01-30)

GitHub release

What's Changed

Pydantic v2.11 is a version strongly focused on build time performance of Pydantic models (and core schema generation in general).This is an early alpha release, meant to collect early feedback from users having issues with core schema builds.

Packaging

New Features

  • Support unsubstituted type variables with both a default and a bound or constraints by@FyZzyss in#10789
  • Add adefault_factory_takes_validated_data property toFieldInfo by@Viicos in#11034
  • Raise a better error when a generic alias is used insidetype[] by@Viicos in#11088
  • Properly support PEP 695 generics syntax by@Viicos in#11189
  • Properly support type variable defaults by@Viicos in#11332

Changes

Performance

Fixes

  • Add validation tests for_internal/_validators.py by@tkasuz in#10763
  • ImproveTypeAdapter instance repr by@sydney-runkle in#10872
  • Revert "ci: use locally built pydantic-core with debug symbols by@sydney-runkle in#10942
  • Re-enable all FastAPI tests by@tamird in#10948
  • Fix typo in HISTORY.md. by@felixxm in#11077
  • Infer final fields with a default value as class variables in the mypy plugin by@Viicos in#11121
  • Recursively unpackLiteral values if using PEP 695 type aliases by@Viicos in#11114
  • Override__subclasscheck__ onModelMetaclass to avoid memory leak and performance issues by@Viicos in#11116
  • Remove unused_extract_get_pydantic_json_schema() parameter by@Viicos in#11155
  • Add FastAPI and SQLModel to third-party tests by@sydney-runkle in#11044
  • Fix conditional expressions syntax for third-party tests by@Viicos in#11162
  • Move FastAPI tests to third-party workflow by@Viicos in#11164
  • Improve discriminated union error message for invalid union variants by@Viicos in#11161
  • Unpack PEP 695 type aliases if using theAnnotated form by@Viicos in#11109
  • Includeopenapi-python-client check in issue creation for third-party failures, usemain branch by@sydney-runkle in#11182
  • Add pandera third-party tests by@Viicos in#11193
  • Add ODMantic third-party tests by@sydney-runkle in#11197
  • Add missing stacklevel indeprecated_instance_property warning by@Viicos in#11200
  • CopyWithJsonSchema schema to avoid sharing mutated data by@thejcannon in#11014
  • Do not cache parametrized models when in the process of parametrizing another model by@Viicos in#10704
  • Re-enable Beanie third-party tests by@Viicos in#11214
  • Add discriminated union related metadata entries to theCoreMetadata definition by@Viicos in#11216
  • Consolidate schema definitions logic in the_Definitions class by@Viicos in#11208
  • Support initializing root model fields with values of theroot type in the mypy plugin by@Viicos in#11212
  • Fix various issues with dataclasses anduse_attribute_docstrings by@Viicos in#11246
  • Only compute normalized decimal places if necessary indecimal_places_validator by@misrasaurabh1 in#11281
  • Fix two misplaced sentences in validation errors documentation by@ananiavito in#11302
  • Fix mkdocstrings inventory example in documentation by@pawamoy in#11311
  • Add support forvalidation_alias in the mypy plugin by@Viicos in#11295
  • Do not transform model serializer functions as class methods in the mypy plugin by@Viicos in#11298
  • SimplifyGenerateJsonSchema.literal_schema() implementation by@misrasaurabh1 in#11321
  • Add additional allowed schemes forClickHouseDsn by@Maze21127 in#11319
  • Coerce decimal constraints toDecimal instances by@Viicos in#11350
  • FixValueError on year zero by@davidhewitt inpydantic-core#1583

New Contributors

v2.10.6 (2025-01-23)

GitHub release

What's Changed

Fixes

v2.10.5 (2025-01-08)

GitHub release

What's Changed

Fixes

v2.10.4 (2024-12-18)

GitHub release

What's Changed

Packaging

Fixes

  • Fix for comparison ofAnyUrl objects by@alexprabhat99 in#11082
  • Properly fetch PEP 695 type params for functions, do not fetch annotations from signature by@Viicos in#11093
  • Include JSON Schema input core schema in function schemas by@Viicos in#11085
  • Addlen to_BaseUrl to avoid TypeError by@Kharianne in#11111
  • Make sure the type reference is removed from the seen references by@Viicos in#11143

New Contributors

v2.10.3 (2024-12-03)

GitHub release

What's Changed

Fixes

  • Set fields whendefer_build is set on Pydantic dataclasses by@Viicos in#10984
  • Do not resolve the JSON Schema reference fordict core schema keys by@Viicos in#10989
  • Use the globals of the function when evaluating the return type forPlainSerializer andWrapSerializer functions by@Viicos in#11008
  • Fix host required enforcement for urls to be compatible with v2.9 behavior by@sydney-runkle in#11027
  • Add adefault_factory_takes_validated_data property toFieldInfo by@Viicos in#11034
  • Fix url json schema inserialization mode by@sydney-runkle in#11035

v2.10.2 (2024-11-25)

GitHub release

What's Changed

Fixes

v2.10.1 (2024-11-21)

GitHub release

What's Changed

Packaging

Fixes

New Contributors

v2.10.0 (2024-11-20)

The code released in v2.10.0 is practically identical to that of v2.10.0b2.

GitHub release

See thev2.10 release blog post for the highlights!

What's Changed

Packaging

New Features

Changes

Performance

  • Schema cleaning: skip unnecessary copies during schema walking by@Viicos in#10286
  • Refactor namespace logic for annotations evaluation by@Viicos in#10530
  • Improve email regexp on edge cases by@AlekseyLobanov in#10601
  • CoreMetadata refactor with an emphasis on documentation, schema build time performance, and reducing complexity by@sydney-runkle in#10675

Fixes

New Contributors

v2.10.0b2 (2024-11-13)

Pre-release, seethe GitHub release for details.

v2.10.0b1 (2024-11-06)

Pre-release, seethe GitHub release for details.

... seehere for earlier changes.

Project details

Verified details

These details have beenverified by PyPI
Project links
Owner
GitHub Statistics
Maintainers
Avatar for dmontagu from gravatar.comdmontagu

Release historyRelease notifications |RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more aboutinstalling packages.

Source Distribution

pydantic-2.11.7.tar.gz (788.4 kBview details)

UploadedSource

Built Distribution

pydantic-2.11.7-py3-none-any.whl (444.8 kBview details)

UploadedPython 3

File details

Details for the filepydantic-2.11.7.tar.gz.

File metadata

  • Download URL:pydantic-2.11.7.tar.gz
  • Upload date:
  • Size: 788.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pydantic-2.11.7.tar.gz
AlgorithmHash digest
SHA256d989c3c6cb79469287b1569f7447a17848c998458d49ebe294e975b9baf0f0db
MD50d1c309b8fdead08922e1ed9d86517b0
BLAKE2b-25600dd4325abf92c39ba8623b5af936ddb36ffcfe0beae70405d456ab1fb2f5b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made forpydantic-2.11.7.tar.gz:

Publisher:ci.yml on pydantic/pydantic

Attestations:Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the filepydantic-2.11.7-py3-none-any.whl.

File metadata

  • Download URL:pydantic-2.11.7-py3-none-any.whl
  • Upload date:
  • Size: 444.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pydantic-2.11.7-py3-none-any.whl
AlgorithmHash digest
SHA256dde5df002701f6de26248661f6835bbe296a47bf73990135c7d07ce741b9623b
MD5774c9f168de6063d11c9ac7f7b1f82fa
BLAKE2b-2566ac0ec2b1c8712ca690e5d61979dee872603e92b8a32f94cc1b72d53beab008a

See more details on using hashes here.

Provenance

The following attestation bundles were made forpydantic-2.11.7-py3-none-any.whl:

Publisher:ci.yml on pydantic/pydantic

Attestations:Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security SponsorDatadog MonitoringFastly CDNGoogle Download AnalyticsPingdom MonitoringSentry Error loggingStatusPage Status page

[8]ページ先頭

©2009-2025 Movatter.jp