Skip to main content

Create Python objects from XML using decorated functions to parse the nodes

Project description

xml_objects

Create Python objects from XML using decorated functions to parse the nodes.

Usage

Basic Parsers

This package relies on the creation of "parsers" to parse "nodes".

Consider this XML:

<root>
<title>Tis is a title</title>
<text>This is some text</text>
</root>

Three nodes are present: root, title, and text. All of these must be coded in Python:

from xml_objects import Builder, no_parent

builder = Builder()


@builder.parser('root')
def root_node(parent, text):
    """This is the root node, so parent should be no_parent."""
    assert parent is no_parent
    print('Parsing has begun.')


@builder.parser('title')
def show_title(parent, text):
    """Because nothing was returned by the root parser, parent should be None."""
    assert parent is None
    print('Title: %s' % text)
    return text


@builder.parser('text')
def show_text(parent, text):
    """Because we returned title from the title parser, we can show it now too."""
    print('%s -> %s' % (parent, text))

With setup now complete, we could use the from_string method of Builder to print the messages, like so:

builder.from_string(xml)

Attributes

Attributes can be used to provide keyword arguments to your parsers. Consider this example node from the Flask example:

<app name="flask-app" host="0.0.0.0" port="8000">
...
</app>```

The app parser in `xml_objects/ext/flask.py` expects `name`, `host`, and `port` as keyword arguments, and provides sensible defaults accordingly:

@builder.parser('app') def get_app(parent, text, name=name, host='0.0.0.0', port='4000'): """Returns a flask app.""" if parent is not no_parent: raise RuntimeError( 'This must be the top-level tag.\nparent: %r' % parent ) app = Flask(name) app.config['HOST'] = host app.config['PORT'] = int(port) return app


### Storage
While you could use xml_objects to build GUIs with [wxPython](https://wxpython.org/) for example, xml_objects itself doesn't provide any mechanism to store state, so this must be done by the programmer.

For examples, see `xml_objects/ext/wx.py`.

### Iterators
Sometimes it may be desirable to run code after you have created an object, and all child tags have been processed. For this reason, it is possible to use generators in your parsers:

@builder.parser('frame') def get_frame(parent, text): """Create a frame, then finalise it when everyone else has finished with it.""" f = Frame() yield f f.finalise()


If you yield more than once, RuntimeError will be raised.



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

xml_python-0.2.6.tar.gz (15.4 kB view details)

Uploaded Source

Built Distribution

xml_python-0.2.6-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

Details for the file xml_python-0.2.6.tar.gz.

File metadata

  • Download URL: xml_python-0.2.6.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.1 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.8.0

File hashes

Hashes for xml_python-0.2.6.tar.gz
Algorithm Hash digest
SHA256 d29d9a6bc38473363d403bbc282e091a31f771c24bd2e5f466897990bddb2c0c
MD5 297a7d2bba7e6ccb3f58d393a805d7aa
BLAKE2b-256 80d2524659f5b0b9498810178d09ce94593de93be4a31d257bd0b7f479c7dabb

See more details on using hashes here.

File details

Details for the file xml_python-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: xml_python-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.1 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.8.0

File hashes

Hashes for xml_python-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 db924fef46188e940cdf5eb4565451ab80444ac3ce05b9b1e205f32e8fe22dee
MD5 547645431661b2207d2406c41d2425c6
BLAKE2b-256 bbaf305989f3c23e15bb13b3c8fd642f72cc4efc91a03326968d3bb293c60b27

See more details on using hashes here.

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