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

Recommended Answers

All 2 Replies

Check webbrowser module.

like pyTony said you want to use the webbrowser module. where pass is in your could it would look something like this

#after you have imported webbrower
webbrowser.open('address to site goes here')
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.