fastexcel 0.20.2

A fast excel reader for Rust and Python
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(crate) mod dtype;
pub(crate) mod excelreader;
pub(crate) mod excelsheet;
pub(crate) mod exceltable;
pub(crate) mod idx_or_name;

pub use dtype::{DType, DTypeCoercion, DTypes};
pub use excelreader::{DefinedName, ExcelReader, LoadSheetOrTableOptions};
pub use excelsheet::{
    ExcelSheet, SelectedColumns, SheetVisible, SkipRows,
    column_info::{ColumnInfo, ColumnNameFrom, DTypeFrom},
};
pub use exceltable::ExcelTable;
pub use idx_or_name::IdxOrName;