Browse Source

[fix] compile regex in ddg_definitions

a01200356 9 years ago
parent
commit
a44faa7716
1 changed files with 4 additions and 2 deletions
  1. 4 2
      searx/engines/duckduckgo_definitions.py

+ 4 - 2
searx/engines/duckduckgo_definitions.py

@@ -1,6 +1,6 @@
 import json
 from urllib import urlencode
-from re import sub
+from re import compile, sub
 from lxml import html
 from searx.utils import html_to_text
 from searx.engines.xpath import extract_text
@@ -8,6 +8,8 @@ from searx.engines.xpath import extract_text
 url = 'https://api.duckduckgo.com/'\
     + '?{query}&format=json&pretty=0&no_redirect=1&d=1'
 
+http_regex = compile(r'^http:')
+
 
 def result_to_text(url, text, htmlResult):
     # TODO : remove result ending with "Meaning" or "Category"
@@ -106,7 +108,7 @@ def response(resp):
 
     # to merge with wikidata's infobox
     if infobox_id:
-        infobox_id = sub(r'^http:', r'https:', infobox_id)
+        infobox_id = http_regex.sub('https:', infobox_id)
 
     # entity
     entity = search_res.get('Entity', None)