8000 GitHub - ansFourtyTwo/xsdata: Naive XML Bindings for python
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ansFourtyTwo/xsdata

 
 

Repository files navigation

https://github.com/tefra/xsdata/raw/master/docs/_static/logo.png

Naive XML Bindings for python

https://travis-ci.com/tefra/xsdata.svg?branch=master https://readthedocs.org/projects/xsdata/badge https://www.codefactor.io/repository/github/tefra/xsdata/badge

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.7 (2020-07-04)

  • Updated analyzer to allow abstract types to be generated. #199
  • Removed support to generate code from multiple sources. #172
  • Fixed naming conflict with AttributeGroup analyzer handler. #194
  • Fixed analyzer to merge redefined attribute groups. #196
  • Fixed analyzer to block inheritance on xs:override derived types. #198
  • Refactored code to prepare for wsdl support.

About

Naive XML Bindings for python

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.4%
  • HTML 0.6%
0