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

I tried to add line breaks in spreadsheet like CTRL+ENTER. Is there a way to perform this? Best regards

Hi. Do you know about this? https://github.com/iwschris/ezodf2 The last commit there was 2013. But the README says that it is derived from "ezdof". But your last commit is much more...

See this from your docu ``` # create a new text document doc = ezodf.newdoc(doctype='odt', filename='text.odt') # or open an existing text document doc = ezodf.opendoc('text.odt') ``` `opendoc` doesn't need...

This is a wish. Currently you have to do `sheet['B2'].set_value(3.141592)` IMO it would be more "natural" if it could be done like this, too: `sheet['B2'] = 3.141592`

The license is a `.txt`, not a `.rst`. This just switches the types.

Added a methoud to read a spreadsheet cell as a specific type.

If one calls `opendoc()` with a non-existing path: ``` opened = ezodf.opendoc("/home/user/path/that/does/not/exist.ods") ``` This is what one gets: ``` Traceback (most recent call last): File "/home/yyyyyyy/loop_list_test.py", line 9, in adapted_ods...

At least the following function return wrong results when I create a sheet that contains data only in the cells (for example) G1, Z1, CD1, CE1: sheet.ncols() sheet["CD1"].value and many...

Hello,I have a trouble to make a nested list. The code is : temp = ezodf.newdoc("odt","") a = ezodf.List() b = ezodf.List() a.append(ezodf.ListItem('1')) b.append(ezodf.ListItem('2')) a += b temp.saveas("temp.odt") And i...