https://code.dlang.org/packages/xlsxd

Announcing xlsxd a OO wrapper for the C library libxlsxwriter [1].

Run:

    import libxlsxd;
    auto workbook  = newWorkbook("demo.xlsx");
    auto worksheet = workbook.addWorksheet("a_worksheet");
    worksheet.write(0, 0, "Hello to Excel from D");


and you have created a Excel spreadsheet in the xlsx format with name demo.xlsx that contains the string "Hello to Excel from D" in row 0, column 0.

[1] https://github.com/jmcnamara/libxlsxwriter

Reply via email to