mirror of
				https://github.com/searxng/searxng.git
				synced 2025-10-31 18:47:07 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| """
 | |
|  Searchcode (It)
 | |
| 
 | |
|  @website     https://searchcode.com/
 | |
|  @provide-api yes (https://searchcode.com/api/)
 | |
| 
 | |
|  @using-api   yes
 | |
|  @results     JSON
 | |
|  @stable      yes
 | |
|  @parse       url, title, content
 | |
| """
 | |
| 
 | |
| from urllib import urlencode
 | |
| from json import loads
 | |
| 
 | |
| # engine dependent config
 | |
| categories = ['it']
 | |
| paging = True
 | |
| 
 | |
| # search-url
 | |
| url = 'https://searchcode.com/'
 | |
| search_url = url + 'api/search_IV/?{query}&p={pageno}'
 | |
| 
 | |
| 
 | |
| # do search-request
 | |
| def request(query, params):
 | |
|     params['url'] = search_url.format(query=urlencode({'q': query}),
 | |
|                                       pageno=params['pageno'] - 1)
 | |
| 
 | |
|     # Disable SSL verification
 | |
|     # error: (60) SSL certificate problem: unable to get local issuer
 | |
|     # certificate
 | |
|     params['verify'] = False
 | |
| 
 | |
|     return params
 | |
| 
 | |
| 
 | |
| # get response from search-request
 | |
| def response(resp):
 | |
|     results = []
 | |
| 
 | |
|     search_results = loads(resp.text)
 | |
| 
 | |
|     # parse results
 | |
|     for result in search_results.get('results', []):
 | |
|         href = result['url']
 | |
|         title = "[{}] {} {}".format(result['type'], result['namespace'], result['name'])
 | |
| 
 | |
|         # append result
 | |
|         results.append({'url': href,
 | |
|                         'title': title,
 | |
|                         'content': result['description']})
 | |
| 
 | |
|     # return results
 | |
|     return results
 |