xlsx 0.0.3
Simple XLSX file parser.
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
dlang-xlsx
An XLSX (Excel 2007+) sheet extractor/parser written in D
Really defines just one useful function: readSheet(string fileName, int sheet)
. See the docs folder for specifics.
Build with dub build
. I would have written it with only the D standard library (Phobos), but std.zip has issues with expandedData
on members of XLSX files returning empty (zero-length) byte arrays. The Dub archive package, on the other hand, works perfectly.
Example usage:
import std.stdio;
import xlsx;
void main() {
//Reads sheet 1 from file "test.xlsx"
writeln(readSheet("test.xlsx", 1));
}
Tested on Windows, but written purely in D with no external dependencies, so it should run on all platforms D supports.
- Registered by Rudy Raab
- 0.0.3 released 7 years ago
- TransientResponse/dlang-xlsx
- MIT
- Copyleft 2017 Rudolph Raab. All wrongs reserved.
- Authors:
- Dependencies:
- archive
- Versions:
-
0.0.8 2019-Jul-04 0.0.7 2019-Jul-01 0.0.6 2018-Jul-08 0.0.5 2018-Jul-01 0.0.4 2017-Nov-15 - Download Stats:
-
-
24 downloads today
-
94 downloads this week
-
469 downloads this month
-
111852 downloads total
-
- Score:
- 3.5
- Short URL:
- xlsx.dub.pm