{"id":16100118,"url":"https://github.com/anilmisirlioglu/table-parser","last_synced_at":"2025-06-13T16:09:00.663Z","repository":{"id":81890000,"uuid":"605571141","full_name":"anilmisirlioglu/table-parser","owner":"anilmisirlioglu","description":"Easily parse your cool table-style output data","archived":false,"fork":false,"pushed_at":"2023-02-24T22:36:26.000Z","size":10,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-12T05:57:04.927Z","etag":null,"topics":["cli-table-parser","k8s-cli-table-parser","table-parser"],"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/anilmisirlioglu.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-23T12:48:54.000Z","updated_at":"2023-02-23T15:06:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"1aaed136-7a82-4bf9-84c6-d953f6100672","html_url":"https://github.com/anilmisirlioglu/table-parser","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anilmisirlioglu%2Ftable-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anilmisirlioglu%2Ftable-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anilmisirlioglu%2Ftable-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anilmisirlioglu%2Ftable-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anilmisirlioglu","download_url":"https://codeload.github.com/anilmisirlioglu/table-parser/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247415930,"owners_count":20935384,"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":["cli-table-parser","k8s-cli-table-parser","table-parser"],"created_at":"2024-10-09T18:45:15.643Z","updated_at":"2025-04-05T23:40:20.132Z","avatar_url":"https://github.com/anilmisirlioglu.png","language":"Go","readme":"# Table Parser [![Made With Go](https://img.shields.io/badge/Made%20with-Go-1f425f.svg?color=007EC6)](http://golang.org)\n\nEasily parse your cool table-style output data.\n\n## Example\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"strings\"\n\t\n\t\"github.com/anilmisirlioglu/table-parser\"\n)\n\nconst input = `\nREPOSITORY      TAG          IMAGE ID       CREATED         SIZE\nfoo             latest       cf508acd919c   26 hours ago    24.5MB\nbar             latest       382715ecff56   2 months ago    705MB\nbaz             v2.3.5       cc88abbad18b   2 months ago    317MB\n`\n\nfunc main() {\n\t// Read the all table\n\tt := table.ReadAll(input)\n\tfmt.Printf(\"table header len: %d\\n\", len(t.Header.Cells))\n\t\n\t// With using Reader\n\tr := table.NewReader(strings.NewReader(input))\n\tfmt.Printf(\"table header len: %d\\n\", len(r.Header().Cells))\n\tfor r.Next() {\n\t\tfmt.Printf(\"Row: %+v\\n\", r.Row())\n\t}\n}\n```\n\n## Roadmap\n\n- [ ] Table Writer\n- [ ] Optimize the Header parser algorithm","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanilmisirlioglu%2Ftable-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanilmisirlioglu%2Ftable-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanilmisirlioglu%2Ftable-parser/lists"}