KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#claude-code
#codex
#cli
#developer-tools
#react
#windows
deepl
★ 20
Open GitHub ↗
DeepL Pro API client for Go.
Download README (.md)
Explore Similar Repositories
deplore
:
deplore is a DeepL client app.
deepl-dotnet
:
A unofficial, fully-featured .NET client for the DeepL translation service.
deepl-translate-cli
:
Unofficial deepl client on CLI
deepl-api-connector
:
Connector library for deepl.com rest translation api
deepl-go
:
This library provides a simple API client function for DeepL
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
deepl
?
Download (.md)
# DeepL Pro API client [](https://pkg.go.dev/github.com/bounoable/deepl) Client library for the [**DeepL Pro API**](https://deepl.com). ## Installation ```sh go get github.com/bounoable/deepl ``` ## Usage See the [examples](./example_test.go). ```go import ( "github.com/bounoable/deepl" ) client := deepl.New("your-auth-key") translated, sourceLang, err := client.Translate( context.TODO(), "Hello, world", deepl.Chinese, ) if err != nil { log.Fatal(err) } log.Println(fmt.Sprintf("source language: %s", sourceLang)) log.Println(translated) ``` ## Testing You can test the library against the real DeepL API by running the following command. **CAUTION: Runnning these tests will add to your usage and therefore will be billed!** ```sh make e2e-test authKey=YOUR_AUTH_KEY ``` ## License [MIT](./LICENSE)