{"id":21391611,"url":"https://github.com/multiprocessio/go-openoffice","last_synced_at":"2025-07-13T18:30:38.397Z","repository":{"id":45073844,"uuid":"446589605","full_name":"multiprocessio/go-openoffice","owner":"multiprocessio","description":"Go library for reading OpenOffice odf and ods files","archived":false,"fork":false,"pushed_at":"2022-01-10T23:27:27.000Z","size":26,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-06-21T19:52:33.260Z","etag":null,"topics":["golang","openoffice"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/multiprocessio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-01-10T21:37:26.000Z","updated_at":"2023-08-31T14:04:23.000Z","dependencies_parsed_at":"2022-09-05T13:21:37.011Z","dependency_job_id":null,"html_url":"https://github.com/multiprocessio/go-openoffice","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/multiprocessio%2Fgo-openoffice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiprocessio%2Fgo-openoffice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiprocessio%2Fgo-openoffice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multiprocessio%2Fgo-openoffice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/multiprocessio","download_url":"https://codeload.github.com/multiprocessio/go-openoffice/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225906273,"owners_count":17543129,"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":["golang","openoffice"],"created_at":"2024-11-22T13:34:49.638Z","updated_at":"2024-11-22T13:34:50.207Z","avatar_url":"https://github.com/multiprocessio.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# go-openoffice\n\nA Go library for reading OpenOffice/LibreOffice .ods (and .odf) files.\n\n## Example\n\n```go\n$ cat ./examples/dump/main.go\npackage main\n\nimport \"fmt\"\nimport \"strings\"\nimport \"github.com/multiprocessio/go-openoffice\"\n\nfunc main() {\n\tf, err := openoffice.OpenODS(\"testdata/test.ods\")\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tdoc, err := f.ParseContent()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tfor _, t := range doc.Sheets {\n\t\tfmt.Printf(\"Sheet Name: %s, Rows: %d\\n\", t.Name, len(t.Rows))\n\n\t\tfor _, row := range t.Strings() {\n\t\t\tfmt.Println(strings.Join(row, \",\"))\n\t\t}\n\n\t\tfmt.Println()\n\t}\n}\n```\n\n## Users\n\nThis library is used by:\n\n* [DataStation](https://github.com/multiprocessio/datastation)\n* [dsq](https://github.com/multiprocessio/dsq)\n\n## History\n\nThis project is a fork of https://github.com/knieriem/odf.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultiprocessio%2Fgo-openoffice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmultiprocessio%2Fgo-openoffice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultiprocessio%2Fgo-openoffice/lists"}