ExEmGel

Simple xml reader


License
MIT
Install
pip install ExEmGel==0.5

Documentation

ExEmGel: Simple pythonic xml reader

ExEmGel is a wrapper around the standard ElementTree library. It allow clean and simple access to xml.

>>> config = exemgel.parse("configuration.xml")
>>> config.configuration.email.host
'mail.example.com'
>>> config.configuration.email.port
25

Installation

To install ExEmGel:, simply:

$ pip install exemgel