Metadata-Version: 1.0
Name: PyramidXmlRenderer
Version: 0.1.2
Summary: Pyramid renderer to get xml output of the view and serializer to the xml format
Home-page: http://pypi.python.org/pypi/pyramid_xml_renderer/
Author: Alexander Vasilyev
Author-email: alexvassel@gmail.com
License: UNKNOWN
Description: pyramid_xml_renderer
        ====================
        
        pyramid_xml_renderer gives the ability to convert structures to xml string (serializers.dumps)
        and contains class XML (__init__.py) that can be used in pyramid framework to render structures to xml page
        Typical usage in Pyramid (__init__.py of your app) looks like this::
        
            #!/usr/bin/env python
        
            from xml_renderer import XML
            config.add_renderer('your_url_to_serve', XML())
        
Platform: UNKNOWN
