An open API service indexing awesome lists of open source software.

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.

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)
}
```