Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #102592 > unrolled thread

Re: Daemon strategy

Started bypaul.hermeneutic@gmail.com
First post2016-02-06 09:13 -0700
Last post2016-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.


Contents

  Re: Daemon strategy paul.hermeneutic@gmail.com - 2016-02-06 09:13 -0700

#102592 — Re: Daemon strategy

Frompaul.hermeneutic@gmail.com
Date2016-02-06 09:13 -0700
SubjectRe: 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?

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web