Metadata-Version: 2.1
Name: xmlmerge
Version: 1.1.1
Summary: XMLMerge is simple tool to merge multiple xml files.
Home-page: https://github.com/kirankotari/xmlmerge.git
Author: Kiran Kumar Kotari
Author-email: kirankotari@live.com
License: UNKNOWN
Description: # xmlmerge
        
        XMLMerge is simple tool to merge multiple xml files.
        
        ## How to Install
        
        ```bash
        pip install xmlmerge
        ```
        
        ## Usage
        
        ```bash
        $xmlmerge file1.xml file2.xml > file3.xml
        $xmlmerge tests/*.xml > combine.xml
        ```
        
        ## How end file looks like
        
        ```xml
        <products>
            <product id="9999">
                <a>1234</a>
                <b>1234</b>
            </product>
        <product id="5678">
                <a>1234</a>
                <b>1234</b>
            </product>
        </products>
        
        ```
        
        ## Contact
        
        Contact Kiran Kumar Kotari <kirankotari@live.com> with any suggestions or comments. If you find any bugs please fix them and send me a pull request.
        
Keywords: xml xmlmerge
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
