Quantcast
Channel: Cross-platform background silent process execution in python - Stack Overflow
Browsing latest articles
Browse All 3 View Live

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 Article


Answer 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 Article


Cross-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
Browsing latest articles
Browse All 3 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>