I am creating a tool to filter a profile based on skills and then finally open a word document with detailed information on the selected profile.
I am using Tkinter to show the dropdown menu for each filter.
Below is my Code:
from tkinter import *
from pandas import *
import os
root=Tk()
root.title('Skill Search Tool')
def getProfile():
os.system("SelectedProfile.docx")
ProfileGet= Button(root,text="Get Profile",command=getProfile())
ProfileGet.pack()
root.mainloop()
However when I click on the button, nothing happens.
Can anyone guide me here?
Regards, Chinmay