I'm using windows 7, hoping to use Tkinter to open an internet window when a button is clicked that goes to a specific page in google chrome. Is this possible?
class App:
def __init__(self, master):
frame = Frame(master)
frame.pack()
self.button = Button(frame, text="Rejuvenation", command=self.info)
self.button.pack()
def info(self):
pass #Will go to relevant webpage