Metadata-Version: 2.1
Name: DoxyXML
Version: 0.1.0
Summary: Parse XML documentation generated by Doxygen
Home-page: https://gitlab.com/xcoponet/doxyxml
Author: Xavier Coponet
Author-email: xavier.coponet@gmail.com
License: MIT
Project-URL: Documentation, https://xcoponet.gitlab.io/doxyxml/
Description: [![pipeline status](https://gitlab.com/xcoponet/doxyxml/badges/master/pipeline.svg)](https://gitlab.com/xcoponet/doxyxml/-/commits/master)
        [![coverage report](https://gitlab.com/xcoponet/doxyxml/badges/master/coverage.svg)](https://gitlab.com/xcoponet/doxyxml/-/commits/master)
        [![documentation](https://img.shields.io/static/v1?label=&message=Documentation&color=informational)](https://xcoponet.gitlab.io/doxyxml/)
        
        Module to parse from XML generated by Doxygen
        
        # Usage
        
        ```python
        from DoxyXML import IndexParser
        
        index = "example_res/Doxygen/xml/index.xml"
        parser = IndexParser(index)
        
        for c in parser.classes:
            print(c)
        ```
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
