ezodf icon indicating copy to clipboard operation
ezodf copied to clipboard

ezodf is a Python package to create new or open existing OpenDocument (ODF) files to extract, add, modify or delete document data, forked from dead project https://bitbucket.org/mozman/ezodf

Results 21 ezodf issues
Sort by recently updated
recently updated
newest added

Dear folks, could you please update the README with a section describing your project organisation and the current status. I assume this is a one-person-freetime-project. But people need to know....

fix https://github.com/T0ha/ezodf/issues/35

`__detect_mime_type` has a bug in line 66/67: https://github.com/T0ha/ezodf/blob/f9675c165679290a15bd2f9ab75f90fbc1490668/ezodf/document.py#L56-L68 [`os.path.splitext`](https://docs.python.org/3/library/os.path.html#os.path.splitext) returns the file extension with a leading dot (e. g. `.ods`). But `MIMETYPES` only contains the extensions without the dot:https://github.com/T0ha/ezodf/blob/f9675c165679290a15bd2f9ab75f90fbc1490668/ezodf/const.py#L23

https://github.com/T0ha/ezodf/blob/f9675c165679290a15bd2f9ab75f90fbc1490668/ezodf/__init__.py#L9 still contains the GPL-3.0 license text despite this project being relicensed to MIT years ago. Should that text be removed?

The .fxxx variants are the same as the standard variants, but not compressed. Thus, they play nicely with GitHub. See LibreOffice for reference... It should be easy to add support...

Just as the title says. is it possilbe to insert math formula in the writer document?

When I try to open a .odt file, I get: ```python >>> textproc = ezodf.opendoc("foo.fodt") Traceback (most recent call last): File "", line 1, in File "/usr/local/lib/python2.7/dist-packages/ezodf/document.py", line 54, in...

A ".fodt" document is already in the repository. I could test my commit with this small modification : ```diff diff --git a/tests/test_variables.py b/tests/test_variables.py index a02b2fc..bc46de9 100644 --- a/tests/test_variables.py +++ b/tests/test_variables.py...