diff options
Diffstat (limited to 'searx/results.py')
-rw-r--r-- | searx/results.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/searx/results.py b/searx/results.py index e262ec110..b6d408e29 100644 --- a/searx/results.py +++ b/searx/results.py @@ -1,9 +1,13 @@ import re +import sys from collections import defaultdict from operator import itemgetter from threading import RLock -from urlparse import urlparse, unquote from searx.engines import engines +from searx.url_utils import urlparse, unquote + +if sys.version_info[0] == 3: + basestring = str CONTENT_LEN_IGNORED_CHARS_REGEX = re.compile(r'[,;:!?\./\\\\ ()-_]', re.M | re.U) WHITESPACE_REGEX = re.compile('( |\t|\n)+', re.M | re.U) |