logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 39ebe1d5193bf62340bc101d51cab77df3c06f7e
parent: 046e1907213ac6317deec045735a0ca36ec8a136
Author: asciimoo <asciimoo@gmail.com>
Date:   Sat, 18 Jan 2014 21:55:42 +0100

[fix] weight configurable via engines.cfg

Diffstat:

Msearx/engines/__init__.py2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/searx/engines/__init__.py b/searx/engines/__init__.py @@ -118,8 +118,6 @@ def score_results(results): weight = 1.0 if hasattr(engines[res['engine']], 'weight'): weight = float(engines[res['engine']].weight) - elif res['engine'] in settings.weights: - weight = float(settings.weights[res['engine']]) score = int((flat_len - i)/engines_len)*weight+1 duplicated = False for new_res in results: