↧
Answer by rocksportrocker for Cross-platform background silent process...
You are looking for a daemon process. Look at How do you create a daemon in Python? or http://blog.ianbicking.org/daemon-best-practices.html
View ArticleAnswer by nmichaels for Cross-platform background silent process execution in...
Look into the subprocess module.from subprocess import Popen, PIPEprocess = Popen(['command', 'arg'], stdout=PIPE)
View ArticleCross-platform background silent process execution in python
Within a python program I need to run a command in background, without displaying its output. Therefore I'm doing os.system("nohup "+ command +"&") for now.Edit : command shouldn't be killed/closed...
View Article