Browse Source

little refactoring

Thomas Pointhuber 10 years ago
parent
commit
3d61d9b930

+ 1 - 0
searx/engines/bing.py

@@ -23,6 +23,7 @@ language_support = True
 base_url = 'https://www.bing.com/'
 search_string = 'search?{query}&first={offset}'
 
+
 # do search-request
 def request(query, params):
     offset = (params['pageno'] - 1) * 10 + 1

+ 1 - 0
searx/engines/bing_images.py

@@ -24,6 +24,7 @@ paging = True
 base_url = 'https://www.bing.com/'
 search_string = 'images/search?{query}&count=10&first={offset}'
 
+
 # do search-request
 def request(query, params):
     offset = (params['pageno'] - 1) * 10 + 1

+ 1 - 0
searx/engines/bing_news.py

@@ -24,6 +24,7 @@ language_support = True
 base_url = 'https://www.bing.com/'
 search_string = 'news/search?{query}&first={offset}'
 
+
 # do search-request
 def request(query, params):
     offset = (params['pageno'] - 1) * 10 + 1

+ 1 - 1
searx/engines/deviantart.py

@@ -6,7 +6,7 @@
 # @using-api   no (TODO, rewrite to api)
 # @results     HTML
 # @stable      no (HTML can change)
-# @parse       url, title, thumbnail
+# @parse       url, title, thumbnail, img_src
 #
 # @todo        rewrite to api