2016-09-06 14:36:04 +00:00
|
|
|
"""
|
|
|
|
MyMemory Translated
|
|
|
|
|
|
|
|
@website https://mymemory.translated.net/
|
|
|
|
@provide-api yes (https://mymemory.translated.net/doc/spec.php)
|
|
|
|
@using-api yes
|
|
|
|
@results JSON
|
|
|
|
@stable yes
|
|
|
|
@parse url, title, content
|
|
|
|
"""
|
2016-09-06 13:40:07 +00:00
|
|
|
import re
|
|
|
|
from cgi import escape
|
2016-09-06 14:43:48 +00:00
|
|
|
from searx.utils import is_valid_lang
|
2016-09-06 13:40:07 +00:00
|
|
|
|
|
|
|
categories = ['general']
|
2016-09-06 15:17:42 +00:00
|
|
|
url = u'http://api.mymemory.translated.net/get?q={query}&langpair={from_lang}|{to_lang}{key}'
|
|
|
|
web_url = u'http://mymemory.translated.net/en/{from_lang}/{to_lang}/{query}'
|
2016-09-06 13:40:07 +00:00
|
|
|
weight = 100
|
|
|
|
|
|
|
|
parser_re = re.compile(u'.*?([a-z]+)-([a-z]+) (.{2,})$', re.I)
|
2016-09-06 14:12:34 +00:00
|
|
|
api_key = ''
|
2016-09-06 13:40:07 +00:00
|
|
|
|
2016-09-06 13:44:05 +00:00
|
|
|
|
2016-09-06 13:40:07 +00:00
|
|
|
def request(query, params):
|
|
|
|
m = parser_re.match(unicode(query, 'utf8'))
|
|
|
|
if not m:
|
|
|
|
return params
|
|
|
|
|
|
|
|
from_lang, to_lang, query = m.groups()
|
|
|
|
|
|
|
|
from_lang = is_valid_lang(from_lang)
|
|
|
|
to_lang = is_valid_lang(to_lang)
|
|
|
|
|
|
|
|
if not from_lang or not to_lang:
|
|
|
|
return params
|
|
|
|
|
2016-09-06 14:12:34 +00:00
|
|
|
if api_key:
|
|
|
|
key_form = '&key=' + api_key
|
|
|
|
else:
|
|
|
|
key_form = ''
|
2016-09-06 13:40:07 +00:00
|
|
|
params['url'] = url.format(from_lang=from_lang[1],
|
|
|
|
to_lang=to_lang[1],
|
2016-09-06 14:12:34 +00:00
|
|
|
query=query,
|
|
|
|
key=key_form)
|
2016-09-06 13:40:07 +00:00
|
|
|
params['query'] = query
|
|
|
|
params['from_lang'] = from_lang
|
|
|
|
params['to_lang'] = to_lang
|
|
|
|
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
|
|
|
def response(resp):
|
|
|
|
results = []
|
|
|
|
results.append({
|
2016-09-06 13:44:05 +00:00
|
|
|
'url': escape(web_url.format(
|
|
|
|
from_lang=resp.search_params['from_lang'][2],
|
|
|
|
to_lang=resp.search_params['to_lang'][2],
|
|
|
|
query=resp.search_params['query'])),
|
|
|
|
'title': escape('[{0}-{1}] {2}'.format(
|
|
|
|
resp.search_params['from_lang'][1],
|
|
|
|
resp.search_params['to_lang'][1],
|
|
|
|
resp.search_params['query'])),
|
2016-09-06 13:40:07 +00:00
|
|
|
'content': escape(resp.json()['responseData']['translatedText'])
|
|
|
|
})
|
|
|
|
return results
|