Hello,
I am trying to write a GUI front (with tcl/tk) for a python module. Unfortunately the module takes parameters and I don't know how to call a python module with parameters without going into interactive mode (I'm running Debian) I can get tcl to run a test module with no parameters:
exec python test.py
and all is well... but the actual module needs parameters, any ideas? Please keep in mind this eventually needs to be cross-platform (but if I can get it running on Linux I'd be happy for now)
And as a side note to any tcl/tk fans: the module will be generating a plot, any ideas on how to get the figure returned by the python module to be embedded in a tcl/tk window?
Thank you so much!