mirror of
https://github.com/searxng/searxng.git
synced 2025-07-15 09:19:20 +02:00
Drop Python 2 (1/n): remove unicode string and url_utils
This commit is contained in:
parent
272158944b
commit
1022228d95
112 changed files with 388 additions and 535 deletions
|
@ -12,8 +12,8 @@ import re
|
|||
from searx.utils import is_valid_lang
|
||||
|
||||
categories = ['general']
|
||||
url = u'https://api.mymemory.translated.net/get?q={query}&langpair={from_lang}|{to_lang}{key}'
|
||||
web_url = u'https://mymemory.translated.net/en/{from_lang}/{to_lang}/{query}'
|
||||
url = 'https://api.mymemory.translated.net/get?q={query}&langpair={from_lang}|{to_lang}{key}'
|
||||
web_url = 'https://mymemory.translated.net/en/{from_lang}/{to_lang}/{query}'
|
||||
weight = 100
|
||||
|
||||
parser_re = re.compile(b'.*?([a-z]+)-([a-z]+) (.{2,})$', re.I)
|
||||
|
@ -39,9 +39,9 @@ def request(query, params):
|
|||
key_form = ''
|
||||
params['url'] = url.format(from_lang=from_lang[1],
|
||||
to_lang=to_lang[1],
|
||||
query=query.decode('utf-8'),
|
||||
query=query.decode(),
|
||||
key=key_form)
|
||||
params['query'] = query.decode('utf-8')
|
||||
params['query'] = query.decode()
|
||||
params['from_lang'] = from_lang
|
||||
params['to_lang'] = to_lang
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue