logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 5897343ab281a129d723e57c5e40531b4dab8b8b
parent: 1a1f9852f11429d3f8f47d5c0c8ef5176f202c27
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Thu,  3 May 2018 14:47:13 +0200

Merge pull request #1289 from rinpatch/acgsou-http

Switch acgsou to http

Diffstat:

Msearx/engines/acgsou.py2+-
Mtests/unit/engines/test_acgsou.py2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/searx/engines/acgsou.py b/searx/engines/acgsou.py @@ -19,7 +19,7 @@ categories = ['files', 'images', 'videos', 'music'] paging = True # search-url -base_url = 'https://www.acgsou.com/' +base_url = 'http://www.acgsou.com/' search_url = base_url + 'search.php?{query}&page={offset}' # xpath queries xpath_results = '//table[contains(@class, "list_style table_fixed")]//tr[not(th)]' diff --git a/tests/unit/engines/test_acgsou.py b/tests/unit/engines/test_acgsou.py @@ -71,7 +71,7 @@ class TestAcgsouEngine(SearxTestCase): self.assertEqual(len(results), 1) r = results[0] - self.assertEqual(r['url'], 'https://www.acgsou.com/show-torrentid.html') + self.assertEqual(r['url'], 'http://www.acgsou.com/show-torrentid.html') self.assertEqual(r['content'], 'Category: "testcategory".') self.assertEqual(r['title'], 'torrentname') self.assertEqual(r['filesize'], 1048576)