简体   繁体   中英

Passing two different functions in a button using Tkinter

I am trying to create a GUI with Python's Tkinter for some scripts and misc functions I have, the design of the GUI looks something like this:

Then, as the label says, I would like to transform a directory full of documents to a single .csv file, so I created two functions: My question is: How should I merge the two functions in the GUI's code?. I tried with a function that calls the two aforementioned functions, however, It did not work. I would also like to know if there is a better way to achieve this.

As mentioned by @Brian Oakley, why haven't you tried including the two functions under 1, in this case, instead of configuring your button on click_me, include maybe the 2 other functions you mentioned?

def clickMe():

    action.configure(text='Hello ' + input_directory.get())
    retrive(input_directory.get())
    corpus_writer(output_directory.get())

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM