I am trying to make a textbox that extracts a word into a keyword in chrome. When i press a button the keyword in the textbox gets implemented into chrome and if that keyword is found, it then goes into that hyperlink.
The code is so far:
from tkinter import *
from tkinter.messagebox import *
import webbrowser
root = Tk()
url = 'https://shop.palaceskateboards.com/'
frame = Frame(root)
frame.pack()
def OpenUrl():
webbrowser.open_new(url)
button = Button(frame, text="Start", command=OpenUrl)
button.pack()
root.mainloop()