Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akhenakh/hunspellgo
Hunspell bidings for Golang
https://github.com/akhenakh/hunspellgo
Last synced: 24 days ago
JSON representation
Hunspell bidings for Golang
- Host: GitHub
- URL: https://github.com/akhenakh/hunspellgo
- Owner: akhenakh
- Created: 2012-11-14T15:08:17.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-02-21T12:26:22.000Z (over 8 years ago)
- Last Synced: 2024-06-18T22:56:41.789Z (5 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 8
- Watchers: 3
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
hunspellgo
==========Hunspell bindings for Golang
### Install
go get github.com/akhenakh/hunspellgo### Usage
import "github.com/akhenakh/hunspellgo"h := hunspellgo.Hunspell("/home/akh/dev/hunspell/fr.aff", "/home/akh/dev/hunspell/fr.dic")
fmt.Println(h.Spell("Bonjour"))
fmt.Println(h.Spell("Bonj"))
fmt.Println(h.Spell("bébé"))
true
false
trueSuggest not working yet