logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 31866d9f3357683949971b62d44e01b3d73befe1
parent: 827aba45991d8379054a2c098e0a4bc44984fb44
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Thu, 11 Aug 2016 13:33:59 +0200

Merge pull request #629 from stepshal/E305

Add missing blank lines after class or function definition.

Diffstat:

Msearx/engines/archlinux.py2++
Msearx/engines/soundcloud.py1+
Mutils/fetch_currencies.py1+
3 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/searx/engines/archlinux.py b/searx/engines/archlinux.py @@ -34,6 +34,7 @@ def locale_to_lang_code(locale): locale = locale.split('_')[0] return locale + # wikis for some languages were moved off from the main site, we need to make # requests to correct URLs to be able to get results in those languages lang_urls = { @@ -70,6 +71,7 @@ def get_lang_urls(language): return lang_urls[language] return lang_urls['all'] + # Language names to build search requests for # those languages which are hosted on the main site. main_langs = { diff --git a/searx/engines/soundcloud.py b/searx/engines/soundcloud.py @@ -57,6 +57,7 @@ def get_client_id(): logger.warning("Unable to fetch guest client_id from SoundCloud, check parser!") return "" + # api-key guest_client_id = get_client_id() diff --git a/utils/fetch_currencies.py b/utils/fetch_currencies.py @@ -142,6 +142,7 @@ def wd_query(query, offset=0): qlist.append(r.get('title', '')) fetch_data_batch(qlist) + # fetch # for q in wmflabs_queries: wdq_query(q)