mirror of https://github.com/searx/searx
[fix] unused globals removed
This commit is contained in:
parent
84c3251bdc
commit
66f02dc2b6
|
@ -27,7 +27,6 @@ def request(query, params):
|
|||
|
||||
|
||||
def response(resp):
|
||||
global base_url
|
||||
results = []
|
||||
dom = html.fromstring(resp.content)
|
||||
for result in dom.xpath('//div[@class="sa_cc"]'):
|
||||
|
|
|
@ -29,7 +29,6 @@ def request(query, params):
|
|||
|
||||
|
||||
def response(resp):
|
||||
global base_url
|
||||
results = []
|
||||
dom = html.fromstring(resp.content)
|
||||
for result in dom.xpath('//div[@class="sa_cc"]'):
|
||||
|
|
|
@ -31,7 +31,6 @@ def request(query, params):
|
|||
|
||||
|
||||
def response(resp):
|
||||
global base_url
|
||||
results = []
|
||||
try:
|
||||
_, conversion_rate, _ = resp.text.split(',', 2)
|
||||
|
|
|
@ -18,7 +18,6 @@ def request(query, params):
|
|||
|
||||
|
||||
def response(resp):
|
||||
global base_url
|
||||
results = []
|
||||
if resp.status_code == 302:
|
||||
return results
|
||||
|
|
|
@ -10,7 +10,6 @@ accept_header = 'application/vnd.github.preview.text-match+json'
|
|||
|
||||
|
||||
def request(query, params):
|
||||
global search_url
|
||||
params['url'] = search_url.format(query=urlencode({'q': query}))
|
||||
params['headers']['Accept'] = accept_header
|
||||
return params
|
||||
|
|
|
@ -18,7 +18,6 @@ def request(query, params):
|
|||
|
||||
|
||||
def response(resp):
|
||||
global base_url
|
||||
results = []
|
||||
search_res = loads(resp.text)
|
||||
for result in search_res.get('collection', []):
|
||||
|
|
|
@ -12,13 +12,11 @@ content_xpath = './/p[@class="js-tweet-text tweet-text"]//text()'
|
|||
|
||||
|
||||
def request(query, params):
|
||||
global search_url
|
||||
params['url'] = search_url + urlencode({'q': query})
|
||||
return params
|
||||
|
||||
|
||||
def response(resp):
|
||||
global base_url
|
||||
results = []
|
||||
dom = html.fromstring(resp.text)
|
||||
for tweet in dom.xpath('//li[@data-item-type="tweet"]'):
|
||||
|
|
Loading…
Reference in New Issue