소스 검색

little fix for google images engine

Thomas Pointhuber 10 년 전
부모
커밋
6450082987
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1
    0
      searx/engines/google_images.py

+ 1
- 0
searx/engines/google_images.py 파일 보기

8
 url = 'https://ajax.googleapis.com/'
8
 url = 'https://ajax.googleapis.com/'
9
 search_url = url + 'ajax/services/search/images?v=1.0&start={offset}&rsz=large&safe=off&filter=off&{query}'  # noqa
9
 search_url = url + 'ajax/services/search/images?v=1.0&start={offset}&rsz=large&safe=off&filter=off&{query}'  # noqa
10
 
10
 
11
+paging = True
11
 
12
 
12
 def request(query, params):
13
 def request(query, params):
13
     offset = (params['pageno'] - 1) * 8
14
     offset = (params['pageno'] - 1) * 8