- Author:
- vsergeyev
- Posted:
- February 22, 2010
- Language:
- Python
- Version:
- 1.1
- Score:
- 0 (after 0 ratings)
Based on http://code.google.com/p/py-gtranslate/
Removed YAML dependency and list of languages. Instead it use 2-symbol codes for languages.
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
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 3 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 11 months ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 7 months ago
Comments
Please login first before commenting.