Ecosyste.ms: Awesome

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

https://github.com/lib-x/deepl

free deepl translate api in go
https://github.com/lib-x/deepl

Last synced: 24 days ago
JSON representation

free deepl translate api in go

Lists

README

        

# deepl
## free deepl translate api in go
[![Go Report Card](https://goreportcard.com/badge/github.com/czyt/deepl)](https://goreportcard.com/report/github.com/czyt/deepl)

reference [deepLX](https://github.com/OwO-Network/DeepLX) ,Reverse-engineering the DeepL Windows client has improved several details.

deepL windows Client download Url: https://appdownload.deepl.com/windows/0install/deepl.xml

Example:
```go
import "github.com/lib-x/deepl"
translateResp, err := Translate("", "zh", "I love Go programming language")
if err != nil {
t.Fatal(err)
}
log.Println(translateResp.Result.Texts[0].Text)
```
also you an set proxy to use the deepl lib.see in the test