I have a c console app which converts a c file to a html file, the c file location is passed to the program as a command line argument.(the app is for the windows platform)
What I would like to do is have a python gui app to allow the user to select a file and pass the location of the file to the c app for processing.
I already know how to create a basic python gui with tkinter, but I can't figure out or find any usefull info on how I would go about intgrating the two programs.
Maybe its possible to pipe the string to the c app with the pOpen() method? (but I can't figure out how...)
Note: Im new to python so code examples might be helpful rather then just description, (as Im not familiar with all of the python libraries etc,) although any help at all would be appreciated.
Thanks, V