Skip to content
This repository has been archived by the owner on Jan 29, 2022. It is now read-only.
/ deepel Public archive

Unofficial Go client for the DeepL private API

License

Notifications You must be signed in to change notification settings

ravern/deepel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DeepL Go Client

Unofficial Go client for the private API of deepl.com.

Usage

package main

import (
	"fmt"

	"github.com/ravernkoh/deepl"
)

func main() {
	// Instantiate client and configure
	cli := deepl.NewClient()

	// Translate some simple text
	res, _ := cli.Translate([]string{"Hello, world!"}, deepl.English, deepl.German)
	fmt.Println(res[0])
}

Installation

$ go get github.com/ravernkoh/deepl

About

Unofficial Go client for the DeepL private API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages