Crates.io | oox |
lib.rs | oox |
version | 0.1.0 |
source | src |
created_at | 2020-02-15 14:21:50.591688 |
updated_at | 2020-02-15 14:21:50.591688 |
description | Open Office XML file format deserializer |
homepage | https://github.com/dam4rus/oox-rs |
repository | https://github.com/dam4rus/oox-rs.git |
max_upload_size | |
id | 209482 |
size | 1,526,747 |
A library to deserialize Open Office Xml files in Rust.
oox-rs is a low level deserializer for Microsoft's OfficeOpen XML file formats. It's still WIP, so expect API breaking changes.
The Office Open XML file formats are described by the ECMA-376 standard. The types represented in this library are generated from the Transitional XML Schema's, which is described in ECMA-376 4th edition Part 4.
Documentation is generated from the "Ecma Office Open XML Part 1 - Fundamentals And Markup Language Reference.pdf" file, found in ECMA-376 4th edition Part 1
Oox-rs has no high level interface to access objects and their attributes in a page/slide yet. It only provides access to the elements in various xml files as in-memory objects. If you want to import a document into your application you should look up the documentations above. A high level interface is planned.
use oox::docx::package::Package as DocxPackage;
let package = DocxPackage::from_file(&PathBuf::from("path/to/example/file.docx")).unwrap();
let main_document = package.main_document.as_ref().unwrap(); // Access the main document