1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searx_ynh.git synced 2024-09-03 20:16:30 +02:00
searx_ynh/sources/searx/engines/dummy.py
2015-09-08 23:05:37 +02:00

16 lines
199 B
Python

"""
Dummy
@results empty array
@stable yes
"""
# do search-request
def request(query, params):
return params
# get response from search-request
def response(resp):
return []