i am working on python and i want to read *.ods file and convert it to in python dictionary
the key will be first column value and the value will be second column value.
how will i do it..i used xlrd but it does not read *.ods file.
thanks
|
i am working on python and i want to read *.ods file and convert it to in python dictionary the key will be first column value and the value will be second column value. how will i do it..i used xlrd but it does not read *.ods file. thanks |
|||
|
Check py-odftools. |
|||
|
|
|
Can you convert the .ODS to a csv first? Then parsing CSV using Python is pretty easy using the csv module. |
|||
|
|
There's a great article on Linux Journal how to read ods in python. Ods file is a juz zip file containing xml file inside. You can than parse xml file to read all cells. |
|||
|
ezodfhas promise but started only recently (version 0.2.0 alpha) and doesn't handle .ods files yet apart from opening and saving files, certainly doesn't know about tables (sheets), rows and cells yet. Also it's Python 3.x only. – John Machin Jan 24 '11 at 6:46