Future features and bugfixes

Features

Remove downloaded temporary file

When data is coming from HTTP (...) URL, it’s stored in a temporary file that’s not deleted after processing.

Support for standard mimetypes module

Add our mime types to standard Python module.

Human readable plain text conversion

>>> from openxmllib import openXmlDocument
>>> doc = openXmlDocument(...)
>>> doc.textDocument(target_directory)

(this may be not possible for spreadsheets)

HTML conversions

>>> from openxmllib import openXmlDocument
>>> doc = openXmlDocument(...)
>>> doc.htmlDocument(target_directory)

This requires to find open source XSLT stylesheets.

Document generation

FIXME: more to say here

Bugfixes

...Waiting for feedback ;o)