A Go library used for unlimited DeepL translation
Install it with the go get command:
go get github.com/xiaoxuan6/deeplx
Then, you can create a new DeepL translation client and use it for translation:
import (
"fmt"
"github.com/xiaoxuan6/deeplx"
)
func main() {
result := deeplx.Translate("Hello", "EN", "ZH")
fmt.Println(result)
}
Warning
并发控制在1000以内
Concurrent control within 1000