Metadata-Version: 1.1
Name: pxml
Version: 0.2.5
Summary: A python library and command-line tool to "prettify" and colorize XML.
Home-page: http://github.com/metagriffin/pxml
Author: metagriffin
Author-email: mg.pypi@uberdev.org
License: GPLv3+
Description: ================
        Pretty-Print XML
        ================
        
        A python library and command-line tool to "prettify" and colorize XML.
        
        
        Installation
        ============
        
        .. code-block:: bash
        
          $ pip install pxml
        
        
        On the Command-Line
        ===================
        
        .. code-block:: bash
        
          $ echo '<root><node attr="value">foo</node></root>' | pxml
          <?xml version="1.0" encoding="utf-8"?>
          <root>
            <node attr="value">foo</node>
          </root>
        
        And add some color:
        
        .. image:: https://raw.github.com/metagriffin/pxml/master/pxml-color.png
          :alt: pxml with color
        
        
        As a Python Module
        ==================
        
        .. code-block:: python
        
          import pxml, six
        
          src = six.StringIO('<root><node attr="value">foo</node></root>')
          out = six.StringIO()
        
          pxml.prettify(src, out)
        
          assert(out.getvalue() == '''\
          <?xml version="1.0" encoding="utf-8"?>
          <root>
            <node attr="value">foo</node>
          </root>
          ''')
        
Keywords: pretty xml command-line library
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
