{"id":32948835,"url":"https://github.com/chonla/cellwalker","last_synced_at":"2026-01-24T15:41:59.670Z","repository":{"id":57554963,"uuid":"310255017","full_name":"chonla/cellwalker","owner":"chonla","description":"Excel Cell Name Traversal for Go","archived":false,"fork":false,"pushed_at":"2024-10-17T03:49:33.000Z","size":26,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-20T04:51:22.321Z","etag":null,"topics":["golang-library"],"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/chonla.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":"2020-11-05T09:50:16.000Z","updated_at":"2024-10-17T03:49:37.000Z","dependencies_parsed_at":"2022-09-26T18:51:11.882Z","dependency_job_id":null,"html_url":"https://github.com/chonla/cellwalker","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/chonla/cellwalker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonla%2Fcellwalker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonla%2Fcellwalker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonla%2Fcellwalker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonla%2Fcellwalker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chonla","download_url":"https://codeload.github.com/chonla/cellwalker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonla%2Fcellwalker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28730329,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-library"],"created_at":"2025-11-12T20:00:35.667Z","updated_at":"2026-01-24T15:41:59.665Z","avatar_url":"https://github.com/chonla.png","language":"Go","readme":"# Cell Walker\n\n[![codecov](https://codecov.io/github/chonla/cellwalker/graph/badge.svg?token=N2WFUOD9OB)](https://codecov.io/github/chonla/cellwalker) [![Go Report Card](https://goreportcard.com/badge/github.com/chonla/cellwalker)](https://goreportcard.com/report/github.com/chonla/cellwalker) [![Go Reference](https://pkg.go.dev/badge/github.com/chonla/cellwalker.svg)](https://pkg.go.dev/github.com/chonla/cellwalker)\n\nCell Walker is a go package for virtually traversing Excel cell by cell's name. The package does not actually traverse into a real Excel file.\n\n## Example\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/chonla/cellwalker\"\n)\n\nfunc main() {\n\t// Walk from a cell to other cell\n\tfmt.Println(cellwalker.At(\"B3\").Right().Below().String()) // C4\n\n\t// Jump from a cell to other cell\n\tfmt.Println(cellwalker.At(\"C2\").ColumnOffset(5).RowOffset(10).String()) // H12\n\n\t// Too far jump from a cell to other cell will hit the limit of boundary\n\tfmt.Println(cellwalker.At(\"ZZZ2\").ColumnOffset(5).RowOffset(10).String()) // XFD12\n\n\t// Range walking apply other boundary to walker\n\tfmt.Println(cellwalker.Within(\"C2:H3\").At(\"C3\").Right().Below().String()) // D3\n\n\t// Too far jump in a new boundary\n\tfmt.Println(cellwalker.Within(\"C2:H3\").At(\"ZZZ2\").ColumnOffset(5).RowOffset(10).String()) // XFD12\n\n\t// Range traversal\n\tresult1 := cellwalker.Within(\"B3:E5\").At(\"C4\") // Define range and initial cell position\n\tfmt.Println(result1.String()) // C4\n\tresult2 := result1.Tour()\n\tfmt.Println(result2.String()) // D4\n\tresult3 := result2.Tour()\n\tfmt.Println(result3.String()) // E4\n\tresult4 := result3.Tour()\n\tfmt.Println(result4.String()) // B5\n\tresult5 := result4.Tour()\n\tfmt.Println(result5.String()) // C5\n\tresult6 := result5.Tour()\n\tfmt.Println(result6.String()) // D5\n\tresult7 := result6.Tour()\n\tfmt.Println(result7.String()) // E5\n\tresult8 := result7.Tour()\n\tfmt.Println(result8 == nil) // true\n}\n```\n\n## License\n\n[MIT](LICENSE)","funding_links":[],"categories":["Microsoft Office","微软办公软件"],"sub_categories":["Microsoft Excel"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchonla%2Fcellwalker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchonla%2Fcellwalker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchonla%2Fcellwalker/lists"}