I looked everywhere but couldn't quite find an answer.
I have a python program that takes a large CSV and breaks it down and summarizes some metrics. The entire program occurs within a function that takes only the large CSV as a parameter.
I want to use TkInter to open a window that simply has a 'browse' button, and an 'analyze' function. The browse button allows them to select a file from a file dialog. And the analyze button would run my python function with the file chosen.
Is this possible? I am not familiar with TkInter and don't know how to code with it at all.