Metadata-Version: 1.0
Name: pypdfml
Version: 0.1.0alpha
Summary: Simple XML wrapper for reportlab.
Home-page: https://github.com/badzong/pypdfml
Author: Manuel Badzong
Author-email: manuel@andev.ch
License: unknown
Description: pypdfml
        =======
        
        Simple XML wrapper for reportlab with jinja2 support
        
        
        ## Requirements
        
          * reportlab
          * PIL
          * jinja2 (optional)
        
        
        ## Usage
        
        ```
        from pypdfml import PyPDFML
        
        pdf = PyPDFML('example.xml')
        
        context = {
            'what': 'world'
        }
        
        pdf.generate(context)
        pdf.save()
        ```
        
        
        ## Examples
        
        The following [template](https://github.com/badzong/pypdfml/blob/master/pypdfml/templates/example.xml) generates this [PDF document](https://github.com/badzong/pypdfml/blob/master/example.pdf)
        
Keywords: pdf generating reportlab report xml jinja
Platform: UNKNOWN
