Metadata-Version: 1.1
Name: docxcompose
Version: 1.0.0a2
Summary: Compose .docx documents
Home-page: https://github.com/4teamwork/docxcompose
Author: Thomas Buchberger
Author-email: t.buchberger@4teamwork.ch
License: GPL version 2
Description: 
        *docxcompose* is a Python library for concatenating/appending Microsoft
        Word (.docx) files.
        
        
        Example usage
        -------------
        
        Append a document to another document:
        
        .. code::
        
            from docxcompose.composer import Composer
            from docx import Document
            master = Document("master.docx")
            composer = Composer(master)
            doc1 = Document("doc1.docx")
            composer.append(doc1)
            composer.save("combined.docx")
        
        Changelog
        =========
        
        
        1.0.0a2 (2017-11-06)
        --------------------
        
        - Fix handling of footnotes containing hyperlinks.
          [buchi]
        
        - Add functionality to deal with custom document properties. Properties can be
          updated and fields containing properties can be removed. When appending or
          inserting documents their custom document properties get removed automatically.
          [buchi]
        
        
        1.0.0a1 (2017-09-13)
        --------------------
        
        - Initial release
          [buchi]
        
Keywords: Python DOCX Word OOXML
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
