mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	Merge pull request #1699 from liimee/eng-app-store
add apple app store engine
This commit is contained in:
		
						commit
						56000d5162
					
				
					 2 changed files with 62 additions and 0 deletions
				
			
		
							
								
								
									
										57
									
								
								searx/engines/apple_app_store.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										57
									
								
								searx/engines/apple_app_store.py
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,57 @@
 | 
			
		|||
# SPDX-License-Identifier: AGPL-3.0-or-later
 | 
			
		||||
# lint: pylint
 | 
			
		||||
"""
 | 
			
		||||
    Apple App Store
 | 
			
		||||
"""
 | 
			
		||||
 | 
			
		||||
from json import loads
 | 
			
		||||
from urllib.parse import urlencode
 | 
			
		||||
from dateutil.parser import parse
 | 
			
		||||
 | 
			
		||||
about = {
 | 
			
		||||
    "website": 'https://www.apple.com/app-store/',
 | 
			
		||||
    "wikidata_id": 'Q368215',
 | 
			
		||||
    "official_api_documentation": (
 | 
			
		||||
        'https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/'
 | 
			
		||||
        'iTuneSearchAPI/UnderstandingSearchResults.html#//apple_ref/doc/uid/TP40017632-CH8-SW1'
 | 
			
		||||
    ),
 | 
			
		||||
    "use_official_api": True,
 | 
			
		||||
    "require_api_key": False,
 | 
			
		||||
    "results": 'JSON',
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
categories = ['files', 'apps']
 | 
			
		||||
safesearch = True
 | 
			
		||||
 | 
			
		||||
search_url = 'https://itunes.apple.com/search?{query}'
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def request(query, params):
 | 
			
		||||
    explicit = "Yes"
 | 
			
		||||
 | 
			
		||||
    if params['safesearch'] > 0:
 | 
			
		||||
        explicit = "No"
 | 
			
		||||
 | 
			
		||||
    params['url'] = search_url.format(query=urlencode({'term': query, 'media': 'software', 'explicit': explicit}))
 | 
			
		||||
 | 
			
		||||
    return params
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def response(resp):
 | 
			
		||||
    results = []
 | 
			
		||||
 | 
			
		||||
    json_result = loads(resp.text)
 | 
			
		||||
 | 
			
		||||
    for result in json_result['results']:
 | 
			
		||||
        results.append(
 | 
			
		||||
            {
 | 
			
		||||
                'url': result['trackViewUrl'],
 | 
			
		||||
                'title': result['trackName'],
 | 
			
		||||
                'content': result['description'],
 | 
			
		||||
                'img_src': result['artworkUrl100'],
 | 
			
		||||
                'publishedDate': parse(result['currentVersionReleaseDate']),
 | 
			
		||||
                'author': result['sellerName'],
 | 
			
		||||
            }
 | 
			
		||||
        )
 | 
			
		||||
 | 
			
		||||
    return results
 | 
			
		||||
| 
						 | 
				
			
			@ -273,6 +273,11 @@ engines:
 | 
			
		|||
    shortcut: apkm
 | 
			
		||||
    disabled: true
 | 
			
		||||
 | 
			
		||||
  - name: apple app store
 | 
			
		||||
    engine: apple_app_store
 | 
			
		||||
    shortcut: aps
 | 
			
		||||
    disabled: true
 | 
			
		||||
 | 
			
		||||
  # Requires Tor
 | 
			
		||||
  - name: ahmia
 | 
			
		||||
    engine: ahmia
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue