Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #102592 > unrolled thread
| Started by | paul.hermeneutic@gmail.com |
|---|---|
| First post | 2016-02-06 09:13 -0700 |
| Last post | 2016-02-06 09:13 -0700 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Daemon strategy paul.hermeneutic@gmail.com - 2016-02-06 09:13 -0700
| From | paul.hermeneutic@gmail.com |
|---|---|
| Date | 2016-02-06 09:13 -0700 |
| Subject | Re: Daemon strategy |
| Message-ID | <mailman.47.1454775255.2317.python-list@python.org> |
> As Ben already said .. either deploy to Unix systems or use > subprocess.Popen and detach the process: > > from subprocess import Popenfrom win32process import DETACHED_PROCESS > Popen(["YOURPROCESS"],creationflags=DETACHED_PROCESS,shell=True) This sounds promising. What are the common methods to communicate with the subprocess? I need to query the status and change some settings for the running process?
Back to top | Article view | comp.lang.python
csiph-web