my question is general.
I would like to search a term on Google and scrape all the results, including the dates of publishing, if there are.
I know that it is possible to scrape a website - following the policy, of course!, and not breaking the rules - by using Python or other softwares.
Is it possible to do this in Mathematica?
UPDATE: By using ServiceConnect, I got this output:
results = ServiceExecute["GoogleCustomSearch", "Search", {"Query" -> "machine learning", "FileFormat" -> Entity["FileFormat", "PDF-1"]}]


results = ServiceExecute["GoogleCustomSearch", "Search", {"Query" -> "machine learning", MaxItems -> 10}]then most likely the credentials are not setup correctly. Follow the instructions here to get the search engine id and api key. – Rohit Namjoshi Sep 30 '19 at 22:44