openprxl 0.1.0

A Rust spreadsheet library inspired by Python's openpyxl
Documentation
1
2
3
4
5
6
7
//! Reading and writing of the `.xlsx` zip package.

pub(crate) mod reader;
pub(crate) mod writer;

pub(crate) use reader::read_workbook;
pub(crate) use writer::write_workbook;