Auto Search
import webbrowser
import time
search_topic = [
"python basics",
"python interview questions",
"top analyze api",
"how to create api in flask"
]
def search():
for topic in search_topic:
webbrowser.open_new_tab('http://www.google.com/search?btnG=1&q=%s' %topic)
time.sleep(2)
search()