I tried to solve your issue, but it is too timeconsuming for me as I’m not an expert in this field by any means. But here is what I wanted to do, in order:
An openoffice document is really just a collection of .xml files, unpack with 7-zip or similar software and search for xml-reader/parser .dll that can be imported directly in dynamo. then set the content.xml as input file.
if .dll’s cannot be found, try to find ironpython scripts that can be called from a pythonscript in dynamo.
I hope somebody have got the time to solve this, in true opensource spirit!
Jostein - thanks for trying to help. I’ll look myself into solving this following the path you suggested. Once I have something working, I’ll post here.
I know this post is very old but it’s still relevant for me. I would like export data to libre office. I know that’s possible with excel but i didn’t found the solution for libre office.
Yes i do, but i have a lot of error in my file. There is data that is embedded in the file while they are not present in the watch block . This parasitic data is not present when I do it with excel.
I do not understand why they appear
Seems like some regional settings are interfering with the CSV’s encoding? Could you give the “File.WriteToCSV” node from the clockwork package a try? It might be able to avoid this issue.
I have tried. But i don’t know what put in “delimiter” input. There is only the text that works if i put nothing in there.
Thanks a lot for your help, I start and I have a lot of trouble.
Have you tried just using the default comma value? You can feed any delimiter you’d like, as a string. You just have to make sure to use the same setting in LO. For example, Revit’s default value for family catalogs is ##
In one case that give me too much data and the other not enother. And for the same file.
I don’t understand because when i look the watch node it’s seems like working. The data are there and good organized
The clockwork csv node expects only strings and numbers. Your lists include elements and that seems to break things down.
And the built in csv node is failing because your regional settings are set up to use commas for the decimal delimiter.
You’ll have to either change your regional settings in Windows or get the string representation from each element with the “string from object”/“element.name” node.0
As a last resort, you could try the python csv module.