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
- Multilingual Models by Archatas 6 years, 2 months ago
- FeinCMS inherit region content from translated language by schmidsi 3 years ago
- utf8-friendly dumpdata management command for yaml (no escape symbols) by mucius 1 week ago
- autotranslate po files using microsoft translator by prabhat246 1 year, 3 months ago
- Ajax auto-filtered Foreign Key Field by anentropic 3 years, 6 months ago
Comments