go-google-translate

module
v0.0.2-alpha Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 26, 2017 License: MIT

README

go-google-translate

Do you want to use google translator API? API is not free anymore. But you can translate 1000 words per day free. And then may be this project can help you to translate unlimited text from one language to another using Google Translator.

Overview

go-google-translate provides a go package to translate using Google Translator by parsing HTML. This library can be used to translate from any language to any other.

In addition this library provides a cli to translate text via console.

Installation

$ go get -u -v github.com/aerokite/go-google-translate/...

Usage

package any

import (
        "fmt"
        "log"
        "os"

        trans "github.com/aerokite/go-google-translate/pkg"
)

func main(){
        // request struct
        req := &trans.TranslateRequest{
                SourceLang: "bn",
                TargetLang: "en",
                Text:       "আমি বাংলায় গান গাই",
        }
        // translate
        translated, err := trans.Translate(req)
        if err != nil {
                log.Fatalln(err)
        }
        fmt.Println(translated) // I sing in Bangla
}

CLI

Command line interface to translate text using command line.

Install

$ go get -u -v github.com/aerokite/go-google-translate/cmd/gopret
$ go install github.com/aerokite/go-google-translate/cmd/gopret

Usages

$ gopret translate --sl bn --tl en --text "আমি বাংলায় গান গাই"
I sing in Bangla

Acknowledgement

Arnaud Aliès for mtranslate in python.

License

Copyright (c) 2017 Mir Shahriar

Licensed under MIT Licence.

Directories

Path Synopsis
cmd
pkg

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL