Metadata-Version: 1.1
Name: PyXerces
Version: 0.0.1
Summary: pyXerces: A Python Xerces-c wrapper
Home-page: https://github.com/mugwort-rc/pyXerces
Author: mugwort_rc
Author-email: mugwort rc at gmail com
License: Apache Software License, Version 2.0
Description: 
        pyXerces
        ========
        
        |travis-ci|_
        
        .. |travis-ci| image:: https://travis-ci.org/mugwort-rc/pyXerces.png
        .. _travis-ci: https://travis-ci.org/mugwort-rc/pyXerces
        
        Basic Usage:
        
            import Xerces
        
            parser = Xerces.XercesDOMParser()
        
            xml = '<test>foobar</test>'
            input = Xerces.MemBufInputSource(xml, 'MemBufId')
            parser.parse(input)
        
            dom = parser.getDocument()
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Text Processing :: Markup :: XML
