{"id":17918902,"url":"https://github.com/xuri/excelize-rs","last_synced_at":"2025-03-23T23:31:14.287Z","repository":{"id":71203269,"uuid":"327361327","full_name":"xuri/excelize-rs","owner":"xuri","description":"Rust language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets","archived":false,"fork":false,"pushed_at":"2024-06-22T08:31:32.000Z","size":78,"stargazers_count":54,"open_issues_count":2,"forks_count":6,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-03-19T00:41:30.587Z","etag":null,"topics":["excel","excelize","rust","xls","xlsx"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xuri.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"xuri"}},"created_at":"2021-01-06T16:01:50.000Z","updated_at":"2025-02-24T08:06:08.000Z","dependencies_parsed_at":"2023-05-20T00:15:38.124Z","dependency_job_id":null,"html_url":"https://github.com/xuri/excelize-rs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xuri%2Fexcelize-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xuri%2Fexcelize-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xuri%2Fexcelize-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xuri%2Fexcelize-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xuri","download_url":"https://codeload.github.com/xuri/excelize-rs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245186641,"owners_count":20574551,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["excel","excelize","rust","xls","xlsx"],"created_at":"2024-10-28T20:13:22.151Z","updated_at":"2025-03-23T23:31:14.006Z","avatar_url":"https://github.com/xuri.png","language":"Rust","funding_links":["https://github.com/sponsors/xuri","https://www.paypal.com/paypalme/xuri"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"https://github.com/xuri/excelize-rs/blob/main/logo.png\" width=\"150\" alt=\"Rust excelize logo\"\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://crates.io/crates/excelize\"\u003e\u003cimg src=\"https://img.shields.io/crates/v/excelize.svg\" alt=\"Crates Badge\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://opensource.org/licenses/BSD-3-Clause\"\u003e\u003cimg src=\"https://img.shields.io/badge/license-bsd-orange.svg\" alt=\"Licenses\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/xuri/excelize-rs/actions?workflow=build\"\u003e\u003cimg src=\"https://github.com/xuri/excelize-rs/workflows/build/badge.svg\" alt=\"Build Status\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://www.paypal.com/paypalme/xuri\"\u003e\u003cimg src=\"https://img.shields.io/badge/Donate-PayPal-green.svg\" alt=\"Donate\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n# excelize\n\n## Introduction\n\nExcelize is a pure Rust port of Go [Excelize](https://github.com/xuri/excelize) library that allow you to write to and read from XLAM / XLSM / XLSX / XLTM / XLTX files. Supports reading and writing spreadsheet documents generated by Microsoft Excel\u0026trade; 2007 and later. Supports complex components by high compatibility. The full API docs can be found at [docs reference](https://xuri.me/excelize/).\n\n## Reading spreadsheet\n\nThe following constitutes the bare to read a spreadsheet document.\n\n```rust\nextern crate excelize;\n\nuse excelize::*;\n\nfn main() {\n    let path = String::from(\"Book1.xlsx\");\n    let wb = Spreadsheet::open_file(path);\n    match wb {\n        Ok(ws) =\u003e match ws.get_cell_value(\"Sheet1\", 1, 1) {\n            Ok(c) =\u003e {\n                let cell = String::from(c);\n                println!(\"the value of cell A1 is: {}\", cell)\n            }\n            Err(e) =\u003e println!(\"{:?}\", e),\n        },\n        Err(e) =\u003e print!(\"{:?}\", e),\n    }\n}\n```\n\n## Contributing\n\nContributions are welcome! Open a pull request to fix a bug, or open an issue to discuss a new feature or change. XML is compliant with [part 1 of the 5th edition of the ECMA-376 Standard for Office Open XML](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/).\n\n## Licenses\n\nThis program is under the terms of the BSD 3-Clause License. See [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxuri%2Fexcelize-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxuri%2Fexcelize-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxuri%2Fexcelize-rs/lists"}