google-translate: Google Translate API bindings

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Warnings:

Google Translate Library


[Skip to Readme]

Properties

Versions 0.1.0.0, 0.1.0.1, 0.1.1.1, 0.1.1.2, 0.2, 0.3, 0.4, 0.4.1, 0.5, 0.5
Change log None available
Dependencies aeson, base (>=4.7 && <5), bytestring (>=0.10 && <0.11), http-api-data (>=0.2 && <0.4), http-client (>=0.4 && <0.6), servant (>=0.13), servant-client (>=0.13), text (>=1.2 && <1.3), transformers (>=0.4 && <0.6) [details]
License BSD-3-Clause
Copyright David Johnson (c) 2018
Author David Johnson, Dmitry Dzhus
Maintainer djohnson.m@gmail.com
Category Web
Source repo head: git clone https://github.com/dmjio/google-translate
Uploaded by DavidJohnson at 2018-05-07T11:42:36Z

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for google-translate-0.5

[back to package description]

google-translate

Hackage Hackage Dependencies Haskell Programming Language BSD3 License Build Status

High-level, up-to-date bindings to the Google Translate API.

{-# LANGUAGE OverloadedStrings #-}
import Control.Monad
import qualified Data.Text.IO as T
import Network.HTTP.Client
import Network.HTTP.Client.TLS
import Web.Google.Translate

main :: IO ()
main = do
  Right TranslationResponse { translations = xs } <-
    newManager tlsManagerSettings >>= \mgr ->
    translate mgr (Key "<API-Key>") (Just srcLang) trgLang (Body "Hello")
  forM_ xs $ \Translation { translatedText = TranslatedText txt } ->
    T.putStrLn txt
  where
    srcLang = Source English
    trgLang = Target Russian

-- >>> Здравствуйте