Python GUI for running shell scripts on the file user selects -
I need to create a GUI in Python where GUI has a browse button and I need to run a specific shell script on them Browse files what can someone help me on this ???
import wx, os a = wx.App () d = wx.FileDialog ( None, "Choose a script", wildcard = "* .py") d.ShowModal () os.system (d.GetPath ()) 4 The actual lines of code. You can easily ...
Comments
Post a Comment