I am having all the libraries written in TCL. I want to create a GUI in Python which will have few buttons and other options. In the start TCL shell will open. When I will click the buttons, respective commands will be executed on the TCL shell.
Is it possible to fire commands on the same shell of TCL without closing TCL shell.
I searched google and find Tkniter
module in Python but it will open TCL shell everytime I need to execute command.
os.startfile(cmd)
where, for example,cmd = 'copy myfile.txt C:\\Users\\Philip\\Desktop'
– Betel