diff --git a/searx/engines/subtitleseeker.py b/searx/engines/subtitleseeker.py index 3462983..48790a3 100644 --- a/searx/engines/subtitleseeker.py +++ b/searx/engines/subtitleseeker.py @@ -15,6 +15,7 @@ from lxml import html # engine dependent config categories = ['videos'] paging = True +language = "" # search-url url = 'http://www.subtitleseeker.com/' @@ -41,6 +42,10 @@ def response(resp): for result in dom.xpath(results_xpath): link = result.xpath(".//a")[0] href = link.attrib.get('href') + + if language is not "": + href = href + language + "/" + title = escape(link.xpath(".//text()")[0]) content = result.xpath('.//div[contains(@class,"red")]//text()')[0] diff --git a/searx/settings.yml b/searx/settings.yml index cc70731..e3fe9b2 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -130,6 +130,9 @@ engines: - name : subtitleseeker engine : subtitleseeker shortcut : ss +# The language is an option. You can put any language written in english +# Examples : English, French, German, Hungarian, Chinese... +# language : English - name : startpage engine : startpage