excel2df 0.1.1

A library for converting Excel files to Polars DataFrame
Documentation
  • crates.io
  • documentation comments ///Read excel file(.xlsx) into polars DataFrame directly. /// ////// let wb = Workbook::open("./test.xlsx").unwrap(); /// let range = wb.get_sheet_range("Sheet1"); /// let df = range.to_dataframe(0); /// println!("{:?}", df); ///