-
Notifications
You must be signed in to change notification settings - Fork 162
Open
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers
Description
So, what I'm trying to do is to open the first result of every search in google via python to access its website. Everything works fine until I insert the keyword "gmail", it's always opening a Wikipedia page like this A person from StackOverFlow suggest I come here to ask for help.
import webbrowser
from googlesearch import search
def open_website(name):
def get_website(name):
try:
for web in search(name,stop=1):
webbrowser.open(web)
return True
except Exception:
return "I can't open your website, check your connection"
if get_website(name) == None:
return("Your website doesn't exist")
else:
return "Opening "+name+"..."
open_website("gmail") #you can use "facebook", "instagram", "duolingo" or something like that
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers