Using LibreOffices scalc to convert tab-delimited text to Excel from . . . Nowadays, I am not even bothering with LibreOffice for this, due to the lack of concise, readily-available documentation (e g man pages or ) for the converter options Instead I am using my own very thin Python wrapper around the openpyxl and tabulate libraries, which is far from fast, but good enough for most one-off Excel-to-tab-delimited conversions, my typical use case
Using Python to access LibreOffice Calc using Uno If I were to take up using Python to externally control LO via UNO and was having problems getting things going (Java's what I've used up to now), I'd probably take a careful look at Designing Developing Python Applications, especially the section entitled "From an IDE via LibreOffice Python interpreter"
LibreOffice Command Line Convert CSV to DBF - Stack Overflow I am working on a workflow where I need to be able to batch convert CSV files into DBF files The data in the CSV files can all be output as TEXT fields and then saved as a DBF I have tried to get
Better String formatting in Scala - Stack Overflow "This is #{number} string" format("number" -> 1) Or is this not possible because of type issues (format would need to take a Map [String, Any], I assume; don’t know if this would make things worse) Or is the better way doing it like this: