Metadata-Version: 1.0
Name: wsgitrml2pdf
Version: 0.0.1
Summary: wsgitrml2pdf is wsgi middleware to convert trml text to pdf.
inspired by `django_trml2pdf <http://pypi.python.org/pypi/django_trml2pdf/>`_.

It uses `trml2pdf <http://pypi.python.org/pypi/trml2pdf>`_ and `reportlab <http://ppi.python.org/pypi/reportlab>`_.

use middleware::

 from webob.dec import wsgify
 from wsgitrml2pdf import make_middleware

 @wsgify
 def application(req):
     return Response(body=open("hello.trml").read(), content_type="x-application/trml")

 app = make_middleware(application, content_type="x-application/trml")


    
Home-page: http://bitbucket.org/aodag/wsgitrml2pdf/
Author: Atsushi Odagiri
Author-email: aodagx@gmail.com
License: LGPL
Description: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Web Environment
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Topic :: Text Processing :: Markup
