I want to execute a program in a python application, it will run in the background but eventually come to the foreground.

A GUI is used to interact with it. But controls are offered via a console on stdin and stdout. I want to be able to control it using my application's GUI, so my first idea was:

  • Fork
  • in the parent, dup2 stdin and stdout in order to access them
  • exec the child

Is this easily implementable in python and how? Are there alternative ways to achieve what I want, what would that be?

link|improve this question
The answers are "yes" and "yes". Those answers to the questions you wrote don't seem helpful. Please update your question to clarify what you want to know. – S.Lott Feb 9 at 13:25
feedback

2 Answers

up vote 5 down vote accepted

This is reasonably easy using the standard Python subprocess module:

http://docs.python.org/py3k/library/subprocess.html

link|improve this answer
Indeed, I'll go this way then. I was looking for 2.X modules, fortunately it has existed for a long time (docs.python.org/library/subprocess.html). – Aki Feb 9 at 14:25
feedback

That is not much complex in structure to build !

Check this example

if os.fork():
os._exit(0)
os.setsid()
os.chdir("/")
fd = os.open("/dev/null", os.O_RDWR)
os.dup2(fd, 0)
os.dup2(fd, 1)
os.dup2(fd, 2)
if fd 2:
os.close(fd)

This python code sets an id, changes the dir, opens a file and process and close !

link|improve this answer
that's possibly how I would do it in C, but I hope python has some module that can help me achieve this simply and in a portable way. – Aki Feb 9 at 14:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.