diff options
| author | Alexandre Flament <alex@al-f.net> | 2022-01-30 20:44:30 +0100 |
|---|---|---|
| committer | Alexandre Flament <alex@al-f.net> | 2022-01-30 20:49:22 +0100 |
| commit | ebd3013a1aad1bc6def749dea07d6278f399fb69 (patch) | |
| tree | c82077f57546c913ee697bc9cbfe465669cc8b5a | |
| parent | a6b879f19c74cd0c15907ed9d21b9185ccea9d25 (diff) | |
[mod] tineye engine: minor changes
* remove "disable: false" in settings.yml
* use the json() method from httpx.Response (faster character encoding detection)
| -rw-r--r-- | searx/engines/tineye.py | 3 | ||||
| -rw-r--r-- | searx/settings.yml | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/searx/engines/tineye.py b/searx/engines/tineye.py index 5a8c86062..fe5b60393 100644 --- a/searx/engines/tineye.py +++ b/searx/engines/tineye.py @@ -15,7 +15,6 @@ billion images `[tineye.com] <https://tineye.com/how>`_. """ -from json import loads from urllib.parse import urlencode from datetime import datetime @@ -64,7 +63,7 @@ def response(resp): results = [] # Define wanted results - json_data = loads(resp.text) + json_data = resp.json() number_of_results = json_data['num_matches'] for i in json_data['matches']: diff --git a/searx/settings.yml b/searx/settings.yml index ac320c457..be068a10e 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -487,7 +487,6 @@ engines: engine: tineye shortcut: tin timeout: 9.0 - disabled: false - name: etymonline engine: xpath |