Skip to main content

jxmlease converts between XML and intelligent Python data structures.

Project description

Welcome to jxmlease: a Python module for converting XML to intelligent Python data structures, and converting Python data structures to XML.

What is jxmlease?

Do you have a requirement to process XML data, but find it cumbersome to process XML data in Python? If so, you are not alone.

The main problem with processing XML data in Python is that it doesn’t map well to native Python data structures. XML contains both data and metadata, while native Python objects (lists, dictionaries, and strings) only contain data.

But, wait! That’s not completely true. Actually, Python objects do have the ability to hold metadata. jxmlease subclasses Python list, dictionary, and string types to create new, smart XML classes that can represent the XML data as normal Python objects while also maintaining the metadata for you to use.

For example, consider this sample XML document:

<a>
  <b>
    <z changed="true">foo</z>
  </b>
  <c>
    <d>
      <z changed="true">bar</z>
    </d>
  </c>
  <e>
    <z>baz</z>
  </e>
</a>

Using jxmlease, you can get a standard Python representation of the data in this XML document:

>>> root = jxmlease.parse(xml)
>>> root.prettyprint()
{u'a': {u'b': {u'z': u'foo'},
        u'c': {u'd': {u'z': u'bar'}},
        u'e': {u'z': u'baz'}}}

You can also still access the metadata:

>>> root['a']['b']['z'].get_xml_attr("changed")
u'true'

jxmlease also provides flexibility for parsing your data. If you only need select information from your XML data, you can have jxmlease return it while it is parsing the document:

>>> for path, _, node in jxmlease.parse(xml, generator="z"):
...     changed = node.get_xml_attr("changed", None) is not None
...     print("%-8s: %s %s" % (path, node, "(changed)" if changed else ""))
...
/a/b/z  : foo (changed)
/a/c/d/z: bar (changed)
/a/e/z  : baz

You can also iterate over the full, parsed document:

>>> for node in root.find_nodes_with_tag("z"):
...     changed = node.get_xml_attr("changed", None) is not None
...     print("%s %s" % (node, "(changed)" if changed else ""))
...
foo (changed)
bar (changed)
baz

These iterations can even return part of an XML tree:

>>> for node in root.find_nodes_with_tag(("b", "c")):
...     print("<%s>: %s" % (node.tag, node))
...
<b>: {u'z': u'foo'}
<c>: {u'd': {u'z': u'bar'}}

And, importantly, these objects are subclasses of Python objects, so things like string comparisons work correctly:

>>> root['a']['b']['z'] == "foo"
True
>>> root['a']['b']['z'] == "bar"
False

We think that these features, and others, combine to ease XML processing in Python: hence, the name: jxmlease.

Documentation

The documentation is hosted on readthedocs.

Installation

See the installation instructions. for more information on installing jxmlease.

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

jxmlease-1.0.tar.gz (47.6 kB view details)

Uploaded Source

Built Distribution

jxmlease-1.0-py2.py3-none-any.whl (36.8 kB view details)

Uploaded Python 2Python 3

File details

Details for the file jxmlease-1.0.tar.gz.

File metadata

  • Download URL: jxmlease-1.0.tar.gz
  • Upload date:
  • Size: 47.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for jxmlease-1.0.tar.gz
Algorithm Hash digest
SHA256 256da0377f8276d55b91adc2640f02569422cfa4bc8eef60eee1b3f73444d577
MD5 5a0a5fe4bcce502cb494cf45715849bd
BLAKE2b-256 316220a8925498fa9174eeb4ba2cbbeb6f043ac74035f086bcd967c7a8e88e43

See more details on using hashes here.

File details

Details for the file jxmlease-1.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for jxmlease-1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 9f8e9fbd7a205e3ef61dbf7654acfe439b19f954cec421a8869572ddff91ded6
MD5 01bd4ad4e0e91fa5d65defd9afbced00
BLAKE2b-256 d37b596ddc42542eecec8dea5c864d6428bcf5f4e85c219bd42bb3d2989fd654

See more details on using hashes here.

Supported by

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