Python Google Translate AJAX module

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
# -*- coding: utf-8 -*-
import re, urllib
import simplejson as json

class UrlOpener(urllib.FancyURLopener):
    version = "py-gtranslate/1.0"

base_uri = "http://ajax.googleapis.com/ajax/services/language/translate"

def translate(phrase, src="uk", to="en"):
    data = urllib.urlencode({'v': '1.0', 'langpair': '%s|%s' % (src, to), 'q': phrase.encode('utf-8')})
    resp = json.load(UrlOpener().open('%s?%s' % (base_uri, data)))
    try:
        return resp['responseData']['translatedText']
    except:
        return ""

More like this

  1. FeinCMS inherit region content from translated language by schmidsi 1 year, 8 months ago
  2. Set language via HTTP GET Parameter by schmidsi 1 year, 11 months ago
  3. Multilingual Models by Archatas 4 years, 11 months ago
  4. Modeli18n by pavl 1 year, 8 months ago
  5. autotranslate po files using google translate by dnordberg 3 years, 5 months ago

Comments

(Forgotten your password?)