mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	[fix] \!goi irrelevant results AND display more results
This commit is contained in:
		
							parent
							
								
									e9f8412a6e
								
							
						
					
					
						commit
						13eec44b65
					
				
					 1 changed files with 10 additions and 12 deletions
				
			
		| 
						 | 
				
			
			@ -63,16 +63,11 @@ def request(query, params):
 | 
			
		|||
        'https://'
 | 
			
		||||
        + google_info['subdomain']
 | 
			
		||||
        + '/search'
 | 
			
		||||
        + "?"
 | 
			
		||||
        + urlencode(
 | 
			
		||||
            {
 | 
			
		||||
                'q': query,
 | 
			
		||||
                'tbm': "isch",
 | 
			
		||||
                **google_info['params'],
 | 
			
		||||
                'asearch': 'isch',
 | 
			
		||||
                'async': '_fmt:json,p:1,ijn:' + str(params['pageno']),
 | 
			
		||||
            }
 | 
			
		||||
        )
 | 
			
		||||
        + '?'
 | 
			
		||||
        + urlencode({'q': query, 'tbm': "isch", **google_info['params'], 'asearch': 'isch'})
 | 
			
		||||
        # don't urlencode this because wildly different AND bad results
 | 
			
		||||
        # pagination uses Zero-based numbering
 | 
			
		||||
        + f'&async=_fmt:json,p:1,ijn:{params["pageno"] - 1}'
 | 
			
		||||
    )
 | 
			
		||||
 | 
			
		||||
    if params['time_range'] in time_range_dict:
 | 
			
		||||
| 
						 | 
				
			
			@ -80,9 +75,13 @@ def request(query, params):
 | 
			
		|||
    if params['safesearch']:
 | 
			
		||||
        query_url += '&' + urlencode({'safe': filter_mapping[params['safesearch']]})
 | 
			
		||||
    params['url'] = query_url
 | 
			
		||||
 | 
			
		||||
    params['cookies'] = google_info['cookies']
 | 
			
		||||
    params['headers'].update(google_info['headers'])
 | 
			
		||||
    # this ua will allow getting ~50 results instead of 10. #1641
 | 
			
		||||
    params['headers']['User-Agent'] = (
 | 
			
		||||
        'NSTN/3.60.474802233.release Dalvik/2.1.0 (Linux; U; Android 12;' f' {google_info.get("country", "US")}) gzip'
 | 
			
		||||
    )
 | 
			
		||||
 | 
			
		||||
    return params
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -96,7 +95,6 @@ def response(resp):
 | 
			
		|||
    json_data = loads(resp.text[json_start:])
 | 
			
		||||
 | 
			
		||||
    for item in json_data["ischj"].get("metadata", []):
 | 
			
		||||
 | 
			
		||||
        result_item = {
 | 
			
		||||
            'url': item["result"]["referrer_url"],
 | 
			
		||||
            'title': item["result"]["page_title"],
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue