📊 Cross-platform user-friendly xlsx library for C++11+
Go to file
2014-06-15 12:16:34 -04:00
build make tweaks for visual studio 2014 compiler 2014-06-15 12:16:34 -04:00
docs/samples all tests pass now, except for some strange nullptr errors in test_read_date_value() 2014-06-12 17:04:37 -04:00
include/xlnt make tweaks for visual studio 2014 compiler 2014-06-15 12:16:34 -04:00
source make tweaks for visual studio 2014 compiler 2014-06-15 12:16:34 -04:00
tests make tweaks for visual studio 2014 compiler 2014-06-15 12:16:34 -04:00
third-party make tweaks for visual studio 2014 compiler 2014-06-15 12:16:34 -04:00
.clang-format initial commit 2014-05-06 17:28:38 -04:00
.gitattributes initial commit 2014-05-06 17:28:38 -04:00
.gitignore ignore platform build directories 2014-05-21 17:53:38 -04:00
.gitmodules make tweaks for visual studio 2014 compiler 2014-06-15 12:16:34 -04:00
README.md update readme 2014-05-19 21:54:34 -04:00

xlnt

Introduction

xlnt is a c++ library for reading, writing, and modifying xlsx files. The API is roughly based on openpyxl, a python library for reading and writing xlsx/xlsm files. It is still very much a work in progress, but the core development work is complete.

Usage

Including xlnt in your project

#include <xlnt.h>

Creating a new spreadsheet and saving it

xlnt::workbook wb;
xlnt::worksheet ws = wb.get_active_sheet();
ws.cell("A1") = 5;
ws.cell("B2") = "string data";
ws.cell("C3") = "=RAND()";
ws.merge_cells("C3:C4");
ws.freeze_panes("B2");
wb.save("book1.xlsx");

Opening an existing spreadsheet and printing all rows

xlnt::workbook wb2;
wb2.load("book2.xlsx");
wb2["sheet1"].get_dimensions();
for(auto &row : wb2["sheet2"])
{
    for(auto cell : row)
    {
        std::cout << cell.to_string() << std::endl;
    }
}

Building

xlnt is regularly built and passes all 200+ tests in GCC 4.8.2, MSVC 12, and Clang 3.3.

Workspaces for Visual Studio 2013, and GNU Make can be created using premake and the premake5.lua file in the build directory (requires premake5, currently available here).

Dependencies

xlnt requires the following libraries:

License

xlnt is currently released to the public for free under the terms of the MIT License:

Copyright (c) 2014 Thomas Fussell

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.