xls-rs 0.1.1

A powerful CLI tool and library for spreadsheet manipulation with pandas-style operations. Supports CSV, Excel (XLSX, XLS, ODS), Parquet, and Avro formats with formula evaluation, data transformation, and comprehensive analytics capabilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Excel file handling module

mod chart;
mod reader;
mod types;
mod writer;
pub mod xlsx_writer;

#[allow(unused_imports)]
pub use chart::{ChartConfig, DataChartType};
pub use reader::ExcelHandler;
#[allow(unused_imports)]
pub use types::{CellStyle, WriteOptions};
pub use xlsx_writer::{
    CellData, ConditionalFormat, ConditionalRule, RowData, Sparkline, SparklineGroup,
    SparklineType, XlsxWriter,
    streaming::StreamingXlsxWriter,
};