Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] SerpApiClientException: wrong API engine in error message #47

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion serpapi/apple_app_store_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ def __init__(self, params_dict):
super(AppleAppStoreSearch, self).__init__(params_dict, APPLE_APP_STORE_ENGINE)

def get_location(self, q, limit = 5):
raise SerpApiClientException("location is not supported by youtube search engine")
raise SerpApiClientException("location is not supported by Apple Search search engine")
2 changes: 1 addition & 1 deletion serpapi/duck_duck_go_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ def __init__(self, params_dict):
super(DuckDuckGoSearch, self).__init__(params_dict, DUCKDUCKGO_ENGINE)

def get_location(self, q, limit = 5):
raise SerpApiClientException("location is not supported by walmart search engine")
raise SerpApiClientException("location is not supported by DuckDuckGo search engine")
2 changes: 1 addition & 1 deletion serpapi/naver_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ def __init__(self, params_dict):
super(NaverSearch, self).__init__(params_dict, NAVER_ENGINE)

def get_location(self, q, limit = 5):
raise SerpApiClientException("location is not supported by youtube search engine")
raise SerpApiClientException("location is not supported by Naver search engine")