excel2df
A library for converting Excel files to Polars DataFrame
excel2df is a pure Rust library to read excel files(.xlsx) in to Polars DataFrame.
Now it(V0.1.2) supports multi_threads to read excel files. It can save more time (Almost 40%). It supports multi threads to read shared_strings in v0.1.3. It can save extral 10% time.
v0.1.4 : has fixed bugs for some different excel files.
v0.1.5: suports rust 2021+,and polars 0.45
Examples
Single thread to read excel file
use Workbook;
let mut wb = open.unwrap;
let range = wb.get_sheet_range;
let df = range.to_dataframe;
println!;
Multi threads to read excel file