bisohns / search-engine-parser

Lightweight package to query popular search engines and scrape for result titles, links and descriptions
https://search-engine-parser.readthedocs.io
460 stars 87 forks source link

feat: default safe search enabled for Google search #185

Open AnsahMohammad opened 7 months ago

AnsahMohammad commented 7 months ago

by default set safe = "active" inorder to turnoff, one can add the parameter in kwargs as safe = "off"

usage:


search_args = ('hello world', 1)
gsearch = GoogleSearch()
gresults = gsearch.search(*search_args, safe='off') 

This PR will close #126