Metadata-Version: 1.1
Name: ezodf
Version: 0.2.5
Summary: A Python package to create/manipulate OpenDocumentFormat files.
Home-page: http://bitbucket.org/mozman/ezodf
Author: Manfred Moitzi
Author-email: mozman@gmx.at
License: MIT License
Download-URL: http://bitbucket.org/mozman/ezodf/downloads
Description: 
        Abstract
        ========
        
        **ezodf** is a Python package to create new or open existing OpenDocument
        (ODF) files to extract, add, modify or delete document data.
        
        a simple example::
        
            from ezodf import newdoc, Paragraph, Heading, Sheet
        
            odt = newdoc(doctype='odt', filename='text.odt')
            odt.body += Heading("Chapter 1")
            odt.body += Paragraph("This is a paragraph.")
            odt.save()
        
            ods = newdoc(doctype='ods', filename='spreadsheet.ods')
            sheet = Sheet('SHEET', size=(10, 10))
            ods.sheets += sheet
            sheet['A1'].set_value("cell with text")
            sheet['B2'].set_value(3.141592)
            sheet['C3'].set_value(100, currency='USD')
            sheet['D4'].formula = "of:=SUM([.B2];[.C3])"
            pi = sheet[1, 1].value
            ods.save()
        
        for more examples see: /examples folder
        
        Dependencies
        ============
        
        * lxml <http://codespeak.net/lxml/> for painless serialisation with prefix
          declaration (xlmns:prefix="global:namespace:specifier") in the root element.
          Declarations for unused prefixes are also possible.
        
        The target platform is CPython 2.7 and CPython 3.3+.
        
        Installation
        ============
        
        with pip::
        
            pip install ezodf
        
        or from source::
        
            python setup.py install
        
        Documentation
        =============
        
        http://packages.python.org/ezodf
        
        send feedback to mozman@gmx.at
        
        ezodf can be found on bitbucket.org at:
        
        http://bitbucket.org/mozman/ezodf
        
        NEWS
        ====
        
        Version 0.2.5 - Juli 2012
        
          * Alpha version
          * license changed to MIT license
          * development stopped - for now
        
        Version 0.2.4 - June 2012
        
          * Alpha version
          * can open tables with many repeated rows/cols, 3 opening strategies are supported
          * tested: on Win7/Ubuntu 32-Bit with CPython 2.7 and CPython 3.2
        
        Version 0.2.3 - January 2012
        
          * Alpha version
          * tested: on Windows7 32 Bit with CPython 2.7 and CPython 3.2
        
        Version 0.2.2 - March 2011
        
          * Alpha version
          * Spreadsheet: added cell-span management
          * tested with Python 3.2 - OK
          * added tobytes() method to all document classes
          * opendoc() accept the zip-file content as 'bytes' instead of the filename
            as parameter 'filename'
          * newdoc() accept the zip-file content as 'bytes' instead of the filename
            as parameter 'template'
        
        Version 0.2.1 - 06 February 2011
        
          * Alpha version
          * added basic spreadsheet support
          * Spreadsheet: added sheet, row, column and cell management
        
        Version 0.2.0 - 18 January 2011
        
          * Alpha version
          * create new empty odt, ods, odp, odg file
          * added template support - can create ott, ots, otp, otg files
          * open documents - ezodf.opendoc(filename)
          * create new documents - ezdof.newdoc(doctype, filename, template)
          * Text: added Paragraph, Heading, Span, Hyperlink, List, Section objects
        
        Version 0.1.0 - 02 January 2011
        
          * Pre-Alpha version
          * open/saveas ODF documents
          * modify meta data
        
Keywords: ODF,OpenDocumentFormat,OpenOffice,LibreOffice
Platform: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Office/Business :: Office Suites
Requires: lxml
Provides: ezodf
