{"id":20278497,"url":"https://github.com/wmentor/soundex","last_synced_at":"2025-10-29T11:49:07.268Z","repository":{"id":57619905,"uuid":"334234474","full_name":"wmentor/soundex","owner":"wmentor","description":"Go implementation of the Soundex algorithm.","archived":false,"fork":false,"pushed_at":"2021-01-31T18:51:14.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-14T06:54:11.552Z","etag":null,"topics":["go","go-library","golang","phonetic-algorithm","phonetic-algorithms","soundex","soundex-algorithm"],"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/wmentor.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":"2021-01-29T18:49:07.000Z","updated_at":"2021-01-31T18:50:30.000Z","dependencies_parsed_at":"2022-09-26T18:11:50.409Z","dependency_job_id":null,"html_url":"https://github.com/wmentor/soundex","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wmentor%2Fsoundex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wmentor%2Fsoundex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wmentor%2Fsoundex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wmentor%2Fsoundex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wmentor","download_url":"https://codeload.github.com/wmentor/soundex/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241768283,"owners_count":20017129,"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":["go","go-library","golang","phonetic-algorithm","phonetic-algorithms","soundex","soundex-algorithm"],"created_at":"2024-11-14T13:23:46.223Z","updated_at":"2025-10-29T11:49:02.217Z","avatar_url":"https://github.com/wmentor.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# soundex\n\nSoundex is a phonetic algorithm for indexing names by sound, as pronounced in English. The goal is for homophones to be encoded to the same representation so that they can be matched despite minor differences in spelling.\n\nThis library is a Go implementation of the Soundex algorithm.\n\n# Summary\n\n* Require Go version \u003e= 1.14\n* Support two algorithm version\n* Work only with English words\n* No external dependencies\n* MIT license\n\n# Install\n\n```plaintext\ngo get github.com/wmentor/soundex\n```\n\n# Usage\n\n```golang\npackage main\n\nimport (\n  \"fmt\"\n\n  \"github.com/wmentor/soundex\"\n)\n\nfunc main() {\n\n  snd, _ := soundex.New()\n\n  fmt.Println(snd.Code(\"ammonium\"))       // A555\n  fmt.Println(snd.Code(\"implementation\")) // I514\n  fmt.Println(snd.Code(\"Miller\"))         // M460\n  fmt.Println(snd.Code(\"Muller\"))         // M460\n\n  // improved algorithm version\n\n  snd, _ = soundex.New(soundex.AlgoImproved)\n\n  fmt.Println(snd.Code(\"morphs\"))      // M913\n  fmt.Println(snd.Code(\"traderworld\")) // T969976\n  fmt.Println(snd.Code(\"aquaman\"))     // A588\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwmentor%2Fsoundex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwmentor%2Fsoundex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwmentor%2Fsoundex/lists"}