Questo / google_search_service /search_google.py
shubhendu-ghosh-DS
summarized the google searches
193bf75
from googlesearch import search
class GoogleSearchService:
def __init__(self):
pass
def google_search(self, query, num_results=5):
search_results = search(query, num_results=num_results)
return search_results