Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 492 Bytes

README.rst

File metadata and controls

27 lines (15 loc) · 492 Bytes

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