Skip to main content

pydantic xml extension

Project description

Downloads/month Build status License Supported Python versions Code coverage ReadTheDocs status

pydantic-xml is a pydantic extension providing model fields xml binding and xml serialization / deserialization. It is closely integrated with pydantic which means it supports most of its features.

Features

  • pydantic v1 / v2 support

  • flexable attributes, elements and text binding

  • python collection types support (Dict, TypedDict, List, Set, Tuple, …)

  • Union type support

  • pydantic generic models support

  • pydantic computed fields support

  • lxml xml parser support

  • xml.etree.ElementTree standard library xml parser support

What is not supported?

Getting started

The following model fields binding:

class Product(BaseXmlModel):
    status: Literal['running', 'development'] = attr()  # extracted from the 'status' attribute
    launched: Optional[int] = attr(default=None)  # extracted from the 'launched' attribute
    title: str  # extracted from the element text


class Company(BaseXmlModel):
    trade_name: str = attr(name='trade-name')  # extracted from the 'trade-name' attribute
    website: HttpUrl = element()  # extracted from the 'website' element text
    products: List[Product] = element(tag='product', default=[])  # extracted from the 'Company' element's children

defines the XML document:

<Company trade-name="SpaceX">
    <website>https://www.spacex.com</website>
    <product status="running" launched="2013">Several launch vehicles</product>
    <product status="running" launched="2019">Starlink</product>
    <product status="development">Starship</product>
</Company>

See documentation for more details.

Project details


Download files

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

Source Distribution

pydantic_xml-2.9.2.tar.gz (24.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pydantic_xml-2.9.2-py3-none-any.whl (37.1 kB view details)

Uploaded Python 3

File details

Details for the file pydantic_xml-2.9.2.tar.gz.

File metadata

  • Download URL: pydantic_xml-2.9.2.tar.gz
  • Upload date:
  • Size: 24.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.5.0-1018-azure

File hashes

Hashes for pydantic_xml-2.9.2.tar.gz
Algorithm Hash digest
SHA256 3856aa48f79b4f998177439dcc8a72b13aa57ff440d19f59940778f32e66d0d3
MD5 b4ea23149d1429aab036defc20b9acea
BLAKE2b-256 2c066e537e2196b729c34bd1ff1c22b02f46e86832309fff92def091015062b0

See more details on using hashes here.

File details

Details for the file pydantic_xml-2.9.2-py3-none-any.whl.

File metadata

  • Download URL: pydantic_xml-2.9.2-py3-none-any.whl
  • Upload date:
  • Size: 37.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.5.0-1018-azure

File hashes

Hashes for pydantic_xml-2.9.2-py3-none-any.whl
Algorithm Hash digest
SHA256 35414f95dcdebe39d044ccb61980f071e2814875bf7321f60bfc1563e953146f
MD5 cd1e0831d0bd81330b57c66c55cd78b5
BLAKE2b-256 34606f4bf47509aae6649880eac05cf0a09432bee32ec755faa3192b163e92e0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page