{"id":24941973,"url":"https://github.com/atikahe/go-excel-matrix","last_synced_at":"2025-03-28T18:40:55.614Z","repository":{"id":61625092,"uuid":"540054303","full_name":"atikahe/go-excel-matrix","owner":"atikahe","description":"Generates matrix into excel and enables writing value into a cell given the row and the column name.","archived":false,"fork":false,"pushed_at":"2022-09-23T07:45:14.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-02T18:57:37.200Z","etag":null,"topics":["excelize","go"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/atikahe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-09-22T15:43:58.000Z","updated_at":"2023-03-07T06:27:04.000Z","dependencies_parsed_at":"2022-10-18T17:30:31.519Z","dependency_job_id":null,"html_url":"https://github.com/atikahe/go-excel-matrix","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atikahe%2Fgo-excel-matrix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atikahe%2Fgo-excel-matrix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atikahe%2Fgo-excel-matrix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atikahe%2Fgo-excel-matrix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atikahe","download_url":"https://codeload.github.com/atikahe/go-excel-matrix/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246082653,"owners_count":20720835,"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":["excelize","go"],"created_at":"2025-02-02T18:57:47.648Z","updated_at":"2025-03-28T18:40:55.594Z","avatar_url":"https://github.com/atikahe.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# goexcelmatrix\n\nProject goexcelmatrix generates matrix into excel and enables writing value into a cell given the row and column name.\n\nEarly development stage, hence being somewhat obscure.\n\n## Installation\n```sh\ngo get github.com/atikahe/go-excel-matrix\n```\n\n## Usage\n```go\npackage main\n\nimport \"github.com/atikahe/go-excel-matrix\"\n\npackage main() {\n    // Create new file\n    excel := goexcelmatrix.NewFile()\n\n    // Initialize rows and columns\n    rows := []string{\"Student-1\", \"Student-2\", \"Student-3\"}\n    cols := []string{\"Math\", \"Social Science\", \"History\"}\n\n    excel.SetRows(rows).SetColumns(cols)\n\n    // Input data\n    scores := [][]string{\n        {\"Student-1\", \"Math\", \"A\"},\n        {\"Student-2\", \"Social Science\", \"B\"},\n        {\"Student-3\", \"History\", \"B\"},\n    }\n\n    for _, score := range scores {\n        excel.SetValue(score)\n    }\n\n    // Save file\n    excel.Save(\"AP_Score_2022\")\n}\n```\n\n## To Do\n- Param validation \u0026 error handling\n- Automate test\n\n## Testing\nTesting will go here.\n\n## Contribution\nContributions will go here.\n\n## Project Status\nEarly development.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatikahe%2Fgo-excel-matrix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatikahe%2Fgo-excel-matrix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatikahe%2Fgo-excel-matrix/lists"}