Metadata-Version: 1.1
Name: ExEmGel
Version: 0.1
Summary: Simple xml reader
Home-page: https://github.com/thedavecollins/ExEmGel
Author: Dave Collins
Author-email: dave@hopest.net
License: MIT
Description: ExEmGel: Simple pythonic xml reader
        ===================================
        
        ExEmGel is a wrapper around the standard ElementTree library.
        It allow clean and simple access to xml.
        
        
        .. code-block:: pycon
           >>> config = exemgel.parse("configuration.xml")
           >>> config.configuration.email.host
           'mail.example.com'
           >>> config.configuration.email.port
           25
           
        Installation
        ------------
        
        To install ExEmGel:, simply:
        
        .. code-block:: bash
            
                $ pip install exemgel
                 
            
        
        
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Text Processing :: Markup :: XML
