Skip to main content

This small project allows you to decode DDEX files into friendly Python data types.

Project description

https://travis-ci.org/Trax-air/ddexreader.svg https://img.shields.io/pypi/v/ddexreader.svg

This project allows you to read DDEX files into friendly Python data types. XML files are decoded using the PyXB library.

Keep in mind that this is a fairly low level library that only aims at making DDEX files easier to read using Python. Some DDEX data structures expose lists containing only one element, and some value like UpdateIndicator are not cast as booleans.

Features

  • Open an XML file into a DDEX data structure generated by pyxb corresponding to the DDEX version.

  • Parse this DDEX data structure into a Python dict.

Supported DDEX versions

  • 3.2 (untested)

  • 3.3

  • 3.4

  • 3.4.1

  • 3.5

  • 3.5.1

  • 3.6

Version 3.7 is causing issues with PyXB.

Quickstart

from ddexreader import open_ddex, ddex_to_dict

xml_path = '/path/to/my/ddex_file.xml'
ddex = open_ddex(xml_path)
ddex_dict = ddex_to_dict(ddex)

How to add more DDEX definitions

After installing pyxb on your (unix) system, enter:

pyxbgen -u [the url to the definition file]

Don’t forget to submit them through a pull request.

History

0.1.0 (2015-01-11)

  • First release on PyPI.

Project details


Supported by

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