Python XML Binding
Project description
Naive XML Bindings for python
xsData is a complete XML data binding library for python allowing developers to access and use XML documents as simple objects rather than using DOM.
xsData comes with a code generator that can convert XML Schema 1.0 and 1.1 definitions to simple dataclasses with type hints and as minimum footprint as possible. The generated packages have no dependency on the library itself. So simple that you can write the models on your own if you happen to use an XML document with no schema available.
The XML Parser is highly optimized and uses lxml iterparse to bind the document data to the target models. The parser accepts a configuration instance with various options like fail on unknown properties and is also thread safe which means you can take advantage of the internal model inspection caching context for even faster parsing.
The parser and serializer are constantly tested against the W3C XML Schema 1.1 test suite and passes more than 99% of the valid instance cases.
Check the documentation demos or our W3C XML Schema 1.1 test runner and the samples repo for more ✨✨✨
Features
Generate data models from XML Schema 1.0 and 1.1 definitions.
Supports qualified elements/attributes.
Supports enumerations and inner classes.
Flattening strategies to keep the code as simple as possible.
Preserve embedded documentation and references
Pluggable code writer that supports different formats
Output: Python Data Classes
Output: PlantUML class diagram
Changelog: 20.5.1 (2020-05-14)
Added support to fetch remote schemas.
Updated duplicate attribute names handling.
Updated code generation for enum type fields and default values.
Fixed issue not generating classes derived from simple types.
Fixed analyzer reaching the maximum recursion depth.
Fixed analyzer to flatten properly inner self referencing classes.
Moved dataclasses python conventions to jinja filters.
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.