mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	[mod] engine 'mwmbl: Update API URL
This commit is contained in:
		
							parent
							
								
									f1a148f53e
								
							
						
					
					
						commit
						6458490271
					
				
					 1 changed files with 2 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -17,7 +17,6 @@ from urllib.parse import urlencode
 | 
			
		|||
 | 
			
		||||
about = {
 | 
			
		||||
    "website": 'https://github.com/mwmbl/mwmbl',
 | 
			
		||||
    "official_api_documentation": 'https://api.mwmbl.org/docs',
 | 
			
		||||
    "use_official_api": True,
 | 
			
		||||
    "require_api_key": False,
 | 
			
		||||
    "results": 'JSON',
 | 
			
		||||
| 
						 | 
				
			
			@ -25,11 +24,11 @@ about = {
 | 
			
		|||
paging = False
 | 
			
		||||
categories = ['general']
 | 
			
		||||
 | 
			
		||||
api_url = "https://api.mwmbl.org"
 | 
			
		||||
api_url = "https://api.mwmbl.org/api/v1"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def request(query, params):
 | 
			
		||||
    params['url'] = f"{api_url}/search?{urlencode({'s': query})}"
 | 
			
		||||
    params['url'] = f"{api_url}/search/?{urlencode({'s': query})}"
 | 
			
		||||
    return params
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue