{"id":20625712,"url":"https://github.com/toadharvard/stopwords-iso","last_synced_at":"2026-04-17T18:33:06.645Z","repository":{"id":229716398,"uuid":"777464325","full_name":"toadharvard/stopwords-iso","owner":"toadharvard","description":"`stopwords-iso` is a Go package that removes stop words from a text. Based on https://github.com/stopwords-iso/","archived":false,"fork":false,"pushed_at":"2024-04-05T17:01:31.000Z","size":78,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-08T02:48:29.028Z","etag":null,"topics":[],"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/toadharvard.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-25T22:38:04.000Z","updated_at":"2024-09-13T16:57:12.000Z","dependencies_parsed_at":"2024-04-22T23:44:15.038Z","dependency_job_id":null,"html_url":"https://github.com/toadharvard/stopwords-iso","commit_stats":null,"previous_names":["toadharvard/stopwords-iso"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/toadharvard/stopwords-iso","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toadharvard%2Fstopwords-iso","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toadharvard%2Fstopwords-iso/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toadharvard%2Fstopwords-iso/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toadharvard%2Fstopwords-iso/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/toadharvard","download_url":"https://codeload.github.com/toadharvard/stopwords-iso/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toadharvard%2Fstopwords-iso/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31940922,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2024-11-16T13:10:42.292Z","updated_at":"2026-04-17T18:33:06.627Z","avatar_url":"https://github.com/toadharvard.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# stopwords-iso\nstopwords-iso is a go package that removes stop words from a text content\n\n## Example\n\nYou can remove stopwords by language\n```go\npackage main\nimport (\n    sw \"github.com/toadharvard/stopwords-iso\" \n)\n\nfunc main() {\n\tstopwordsMapping, _ := sw.NewStopwordsMapping()\n\n\toriginalString := \"This is a sample string with some stopwords.\"\n\tlanguage := \"en\"\n\n\tclearedString := stopwordsMapping.ClearStringByLang(originalString, language)\n\tfmt.Printf(\"Cleared string: %s\\n\", clearedString)\n}\n```\n\nor remove all stopwords from all supported languages\n\n```go\npackage main\nimport (\n    sw \"github.com/toadharvard/stopwords-iso\"\n)\nfunc main() {\n\tstopwordsMapping, _ := sw.NewStopwordsMapping()\n\n\toriginalString := \"the book on the table y la pluma es de ella und da Licht ist aus et la porte est ouverte и я it's\"\n\n\tclearedString := stopwordsMapping.ClearString(originalString)\n\tfmt.Printf(\"Cleared string: %s\\n\", clearedString)\n}\n```\n\n## Supported languages\nThis package uses the [stopwords-iso](https://github.com/stopwords-iso/) words pack. All languages supported by stopwords-iso are listed here: https://github.com/stopwords-iso/stopwords-iso?tab=readme-ov-file#credits\n\n## License\n\nDistributed under the MIT license.\nSee [LICENSE](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoadharvard%2Fstopwords-iso","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftoadharvard%2Fstopwords-iso","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoadharvard%2Fstopwords-iso/lists"}