google_translate

Google Translate client
0.2.1 Latest release released

Crystal GoogleTranslate Build Status

Crystal client for GoogleTranslate

Installation

Add this to your application's shard.yml:

dependencies:
  google_translate:
    github: greyblake/crystal-google_translate

Usage

require "google_translate"

Example

The following code translates german word tanzen with a typo(double n) and prints the result:

client = GoogleTranslate::Client.new
tr = client.translate("de", "en", "tanzenn")

puts "#{tr.source_lang} -> #{tr.target_lang}"
puts "Query: #{tr.query}"
puts "Corrected query: #{tr.corrected_query}"
puts "Text: #{tr.text}"
tr.variants.each do |word_class, words|
  puts word_class
  words.each do |word|
    puts "  #{word}"
  end
end

Output:

de -> en
Query: tanzenn
Corrected query: tanzen
Text: dance
verb
  dance
  hop
  spin
  bob
  foot

Development

To run specs:

crystal spec

Contributors

  • greyblake Sergey Potapov - creator, maintainer
google_translate:
  github: greyblake/crystal-google_translate
  version: ~> 0.2.1
License MIT
Crystal none

Authors

Dependencies 0

Development Dependencies 1

  • spec2 crystal-0-18-0
    {'branch' => 'crystal-0-18-0', 'github' => 'greyblake/spec2.cr'}

Dependents 0

Last synced .
search fire star recently