pydantic xml extension
Project description
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pydantic_xml-2.14.0.tar.gz
.
File metadata
- Download URL: pydantic_xml-2.14.0.tar.gz
- Upload date:
- Size: 25.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6dadf6a2783598826f3b406c8e5ff5a2fc19994f48e9fd75f596279643ff59a |
|
MD5 | dbe41dd9f362c5c9019b9be47719168b |
|
BLAKE2b-256 | 00b624614cb775badf8d8fd512e9e725172302b128589ad13149a15be4d9f224 |
File details
Details for the file pydantic_xml-2.14.0-py3-none-any.whl
.
File metadata
- Download URL: pydantic_xml-2.14.0-py3-none-any.whl
- Upload date:
- Size: 40.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01a64132ccf7921c6b3aac4fa7912dcd6d1858b1ea6087f0518d7af0bc2d2d7d |
|
MD5 | e28f60f369219518a3b32f5ef8db7dcd |
|
BLAKE2b-256 | 8cb4ba91e5ce95e67637652189fca252833178e33dd980746ea1ca2d99dd37af |