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

Popular posts from this blog

php - PDO bindParam() fatal error -

php - How can I cram 6+31 numeric characters into 22 alphanumeric characters? -

logging - How can I log both the Request.InputStream and Response.OutputStream traffic in my ASP.NET MVC3 Application for specific Actions? -