Skip to content
Open
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
3 changes: 2 additions & 1 deletion search_engine_parser/core/engines/google.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from search_engine_parser.core.base import BaseSearch, ReturnType, SearchItem


EXTRA_PARAMS = ('hl', 'tbs')
EXTRA_PARAMS = ('hl', 'tbs', 'safe')


class Search(BaseSearch):
Expand All @@ -36,6 +36,7 @@ def get_params(self, query=None, offset=None, page=None, **kwargs):
params["start"] = (page-1) * 10
params["q"] = query
params["gbv"] = 1
params["safe"] = "active"
# additional parameters will be considered
for param in EXTRA_PARAMS:
if kwargs.get(param):
Expand Down