Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
true

Suggest not working yet