{"id":13413433,"url":"https://github.com/fterrag/goxlsxwriter","last_synced_at":"2025-03-14T19:32:11.565Z","repository":{"id":18627301,"uuid":"84783303","full_name":"fterrag/goxlsxwriter","owner":"fterrag","description":"Golang bindings for libxlsxwriter for writing XLSX files","archived":true,"fork":false,"pushed_at":"2022-06-10T07:38:30.000Z","size":93,"stargazers_count":21,"open_issues_count":0,"forks_count":7,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-25T05:25:57.197Z","etag":null,"topics":["excel","excelwriter","golang","golang-bindings","golang-library","libxlsxwriter","xlsx"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fterrag.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-03-13T04:15:17.000Z","updated_at":"2023-07-11T01:40:47.000Z","dependencies_parsed_at":"2022-08-18T01:55:34.166Z","dependency_job_id":null,"html_url":"https://github.com/fterrag/goxlsxwriter","commit_stats":null,"previous_names":["fterrag/xlsxwriter"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fterrag%2Fgoxlsxwriter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fterrag%2Fgoxlsxwriter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fterrag%2Fgoxlsxwriter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fterrag%2Fgoxlsxwriter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fterrag","download_url":"https://codeload.github.com/fterrag/goxlsxwriter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243635422,"owners_count":20322935,"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","excelwriter","golang","golang-bindings","golang-library","libxlsxwriter","xlsx"],"created_at":"2024-07-30T20:01:40.284Z","updated_at":"2025-03-14T19:32:11.541Z","avatar_url":"https://github.com/fterrag.png","language":"Go","funding_links":[],"categories":["Microsoft Office","Utilities","微软办公软件","Microsoft Excel","工具库","实用工具"],"sub_categories":["Microsoft Excel","EXCEL","Advanced Console UIs","交流","\u003cspan id=\"高级控制台用户界面-advanced-console-uis\"\u003e高级控制台用户界面 Advanced Console UIs\u003c/span\u003e","HTTP Clients"],"readme":"goxlsxwriter\n============\n\n[![Build Status](https://travis-ci.org/fterrag/goxlsxwriter.svg?branch=master)](https://travis-ci.org/fterrag/goxlsxwriter) [![Go Report Card](https://goreportcard.com/badge/github.com/fterrag/goxlsxwriter)](https://goreportcard.com/report/github.com/fterrag/goxlsxwriter) [![Coverage Status](https://coveralls.io/repos/github/fterrag/goxlsxwriter/badge.svg)](https://coveralls.io/github/fterrag/goxlsxwriter)\n\ngoxlsxwriter provides Go bindings for the [libxlsxwriter](https://github.com/jmcnamara/libxlsxwriter) C library.\n\n![](https://cloud.githubusercontent.com/assets/22901700/23842694/75b0b3c2-078c-11e7-8ef6-5ae9489971b6.png)\n\n## Install\n\ngoxlsxwriter requires the libxslxwriter library to be installed. To build from source via Git:\n\n```\n$ git clone https://github.com/jmcnamara/libxlsxwriter.git\n$ cd libxlsxwriter\n$ make\n$ make install\n```\n\nVisit [http://libxlsxwriter.github.io/getting_started.html](http://libxlsxwriter.github.io/getting_started.html) for more information on installing libxlsxwriter.\n\n## Sample Use\n\n```go\npackage main\n\nimport (\n    \"github.com/fterrag/goxlsxwriter\"\n)\n\nfunc main() {\n    workbook := goxlsxwriter.NewWorkbook(\"example.xlsx\", nil)\n    worksheet := goxlsxwriter.NewWorksheet(workbook, \"Sheet 1\")\n\n    format := goxlsxwriter.NewFormat(workbook)\n\n    format.SetFontName(\"Verdana\")\n    format.SetFontSize(8)\n    format.SetFontColor(0x008000)\n\n    worksheet.WriteString(0, 0, \"Hello from A1!\", format)\n    worksheet.WriteString(4, 1, \"This cell is B5\", nil)\n\n    options := \u0026goxlsxwriter.ImageOptions{\n        XScale: 0.5,\n        YScale: 0.5,\n    }\n    worksheet.InsertImage(1, 3, \"resources/gopher.png\", options)\n\n    workbook.Close()\n}\n```\n\n## Todo\n\n- [ ] Increase test coverage\n- [ ] Documentation\n- [ ] Expand libxlsxwriter API coverage\n\n## Contributing\n\n* Submit a PR (tests and documentation included)\n* Add or improve documentation\n* Report issues\n* Suggest new features or enhancements\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffterrag%2Fgoxlsxwriter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffterrag%2Fgoxlsxwriter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffterrag%2Fgoxlsxwriter/lists"}