diff options
author | Adam Tauber <asciimoo@gmail.com> | 2016-09-06 17:17:42 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2016-09-06 17:17:42 +0200 |
commit | 3144ec1d5926a2f445da63fc7d6ea7efe00c6d26 (patch) | |
tree | 0b37f8d3bf400271961cc001adffce7e1a05a390 | |
parent | 596c6b6c93a50d8d797e90ad5dd9b608599cd653 (diff) | |
download | searxng-3144ec1d5926a2f445da63fc7d6ea7efe00c6d26.tar.gz searxng-3144ec1d5926a2f445da63fc7d6ea7efe00c6d26.zip |
[fix] unicode urls
-rw-r--r-- | searx/engines/dictzone.py | 3 | ||||
-rw-r--r-- | searx/engines/translated.py | 8 |
2 files changed, 3 insertions, 8 deletions
diff --git a/searx/engines/dictzone.py b/searx/engines/dictzone.py index 5de6c5b98..9765d5f60 100644 --- a/searx/engines/dictzone.py +++ b/searx/engines/dictzone.py @@ -13,11 +13,10 @@ import re from urlparse import urljoin from lxml import html from cgi import escape -from searx.engines.xpath import extract_text from searx.utils import is_valid_lang categories = ['general'] -url = 'http://dictzone.com/{from_lang}-{to_lang}-dictionary/{query}' +url = u'http://dictzone.com/{from_lang}-{to_lang}-dictionary/{query}' weight = 100 parser_re = re.compile(u'.*?([a-z]+)-([a-z]+) ([^ ]+)$', re.I) diff --git a/searx/engines/translated.py b/searx/engines/translated.py index 3a077ae8e..02047bc93 100644 --- a/searx/engines/translated.py +++ b/searx/engines/translated.py @@ -9,16 +9,12 @@ @parse url, title, content """ import re -from urlparse import urljoin -from lxml import html from cgi import escape -from searx.engines.xpath import extract_text from searx.utils import is_valid_lang categories = ['general'] -url = 'http://api.mymemory.translated.net/get?q={query}' \ - '&langpair={from_lang}|{to_lang}{key}' -web_url = 'http://mymemory.translated.net/en/{from_lang}/{to_lang}/{query}' +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}' weight = 100 parser_re = re.compile(u'.*?([a-z]+)-([a-z]+) (.{2,})$', re.I) |