https://github.com/orsinium-labs/stopwords
🙅 Go package for detecting and removing stopwords from text.
https://github.com/orsinium-labs/stopwords
go golang stopwords text-processing tokenizer
Last synced: about 1 year ago
JSON representation
🙅 Go package for detecting and removing stopwords from text.
- Host: GitHub
- URL: https://github.com/orsinium-labs/stopwords
- Owner: orsinium-labs
- License: mit
- Created: 2024-11-24T14:37:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-25T11:26:57.000Z (over 1 year ago)
- Last Synced: 2025-05-07T18:15:03.525Z (about 1 year ago)
- Topics: go, golang, stopwords, text-processing, tokenizer
- Language: Go
- Homepage:
- Size: 43.9 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stopwords
Go package for detecting and removing stopwords from a text.
## Installation
```bash
go get github.com/orsinium-labs/stopwords
```
## Usage
```go
language := "en"
sw := stopwords.MustGet(language)
for match := sw.Find(input) {
fmt.Println(match.Word)
}
```