Popularity
8.1
Declining
Activity
0.0
Stable
51
3
7

Monthly Downloads: 25
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Web     API     Google    

google-translate alternatives and similar packages

Based on the "Google" category.
Alternatively, view google-translate alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of google-translate or a related project?

Add another 'Google' Package

README

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

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


*Note that all licence references and agreements mentioned in the google-translate README section above are relevant to that project's source code only.