Metadata-Version: 1.1
Name: docxtpl
Version: 0.1.6
Summary: Python docx template engine
Home-page: https://github.com/elapouya/python-docx-template
Author: Eric Lapouyade
Author-email: elapouya@gmail.com
License: LGPL 2.1
Description: 
        ====================
        python-docx-template
        ====================
        
        Use a docx as a jinja2 template
        
        Introduction
        ------------
        
        This package uses 2 major packages :
        
        - python-docx for reading, writing and creating sub documents
        - jinja2 for managing tags inserted into the template docx
        
        python-docx-template has been created because python-docx is powerful for creating documents but not for modifying them.
        
        The idea is to begin to create an exemple of the document you want to generate with microsoft word, it can be as complex as you want :
        pictures, index tables, footer, header, variables, anything you can do with word.
        Then, as you are still editing the document with microsoft word, you insert jinja2-like tags directly in the document.
        You save the document as a .docx file (xml format) : it will be your .docx template file.
        
        Now you can use python-docx-template to generate as many word documents you want from this .docx template and context variables you will associate.
        
        Documentation
        -------------
        
        Please, `read the doc <http://docxtpl.readthedocs.org>`_
        
        News
        ====
        0.1.6 (2015-05-11)
        ------------------
        - remove debug code
        - add lxml dependency
        
        0.1.5 (2015-05-11)
        ------------------
        - fix template filter with quote
        
        0.1.4 (2015-03-27)
        ------------------
        - add RichText support
        
        0.1.3 (2015-03-13)
        ------------------
        - add subdoc support
        - add some exemples in tests/
        
        0.1.2 (2015-03-12)
        ------------------
        - First running version
        
Keywords: jinja2
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
