I want to know how I can show a simple gui window and open a link to google.com with python on MacOS.
Does somebody know how to do this ?
Thank you for answers
I want to know how I can show a simple gui window and open a link to google.com with python on MacOS.
Does somebody know how to do this ?
Thank you for answers
You may use this snippet
import webbrowser
webbrowser.open_new('https://google.com')