Write a Python script to take a product name as input and then automatically google search reviews for it and open the top 3 search results in different tabs

#! python3
import bs4import webbrowser as wbimport requests as rq
print('Enter the product name: ')product = input()
print("Searching")print('opening tabs')res = rq.get('https://www.google.co.uk/search?q='+''.join(product)+ ' reviews')res.raise_for_status()
soup=bs4.BeautifulSoup(res.text, "html.parser")links = soup.select('.r a')
top3 = min(3,len(links))
for counter in range(top3):  wb.open('http://google.com' + links[counter].get('href'))

MA

Related Python Mentoring answers

All answers ▸

What would output this code? print(hello world)


What are recursive functions and when should they be used?


Explain why creating a list of several instances of one element using something like my_list = [a] * 5 can result in strange behaviour


Write a short program to print all the even numbers 1 to 100