Skip to content

Latest commit

 

History

7 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

Languagetool API wrapper in Golang

Wrapper for opensource text proofreading api provided by Languagetool.org

Link to api documentation here. Note: Api has limit of 20 calls per minute per IP.

Install:
go get github.com/bas24/languagetool

Example usage:

	package main

	import (
		"fmt"
		lt "github.com/bas24/languagetool"
	)

	func main(){
		text := `Text with eror.`
		result, err := lt.Check(text, "en-US")
		if err != nil {
			fmt.Println(err)
		}

		fmt.Println(result)
	}

Better not very nice code, than no code.

About

Golang wrapper for languagetool.org API

Topics

Resources

Stars

4 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages