Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #95194
| Path | csiph.com!au2pb.net!feeder.erje.net!1.eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!newsgate.cistron.nl!newsgate.news.xs4all.nl!194.109.133.90.MISMATCH!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <ian.g.kelly@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.006 |
| X-Spam-Evidence | '*H*': 0.99; '*S*': 0.00; 'python,': 0.02; 'python': 0.10; 'systems.': 0.11; 'question.': 0.13; 'pipes': 0.16; 'subprocess': 0.16; 'wrote:': 0.16; '(in': 0.18; '2015': 0.20; 'aug': 0.20; 'pipe': 0.22; 'pass': 0.22; 'am,': 0.23; 'unix': 0.24; 'header:In-Reply-To:1': 0.24; 'module': 0.25; 'message- id:@mail.gmail.com': 0.27; 'this.': 0.28; 'another': 0.32; 'windows.': 0.33; 'received:google.com': 0.35; 'possible': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'to:addr:python.org': 0.40; 'called': 0.40; 'information': 0.63; 'to:name:python': 0.84 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=IS5kaNI7OEjbhg8gHaY0B/Py3HBlW267o0b6xyPHyCk=; b=ALl3ORVMEJdl1Qjl4DHdqWfBZrbTJYF4CkZZbiF13A2FMoGz3yiECSvWX2XRhEmbOd mlCW2p3luTGv1Q9qBjpR+vIjINbRgf/8xMQ2OR5rOsqZIaFy1L0kMsU4LuoJJlhiXQwn wjJkwWbnwUvOSOZ+tAABbRE5PWDb5uer4ykfrkANcb5SEv6UPtiLyR4YfJxOg57Tmifb VSh4hscjaBTRYRrF4/FGAaXwus+i+vXngbOk39lCl9v1tUYJOXYBQJjv5+Lfaym4XPWu mnOCErkh2RBEusD9Iz9L9Wc44AM5ygkRpqQHMTw41OPIi2qOYIHOuKmBJVUgIi18ms+Z pV9A== |
| X-Received | by 10.107.129.160 with SMTP id l32mr16396999ioi.158.1439140460798; Sun, 09 Aug 2015 10:14:20 -0700 (PDT) |
| MIME-Version | 1.0 |
| In-Reply-To | <d6a3dfe4-8389-463b-ac66-a93f14a91a5e@googlegroups.com> |
| References | <d6a3dfe4-8389-463b-ac66-a93f14a91a5e@googlegroups.com> |
| From | Ian Kelly <ian.g.kelly@gmail.com> |
| Date | Sun, 9 Aug 2015 11:13:41 -0600 |
| Subject | Re: Pipes |
| To | Python <python-list@python.org> |
| Content-Type | text/plain; charset=UTF-8 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.20+ |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.10.1439140464.3627.python-list@python.org> (permalink) |
| Lines | 9 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1439140464 news.xs4all.nl 2821 [2001:888:2000:d::a6]:36209 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:95194 |
Show key headers only | View raw
On Sun, Aug 9, 2015 at 8:10 AM, <rogerh906@gmail.com> wrote: > Just learning Python and have a question. > > Is it possible for Python to pass information to another program (in Windows), wait for that program to finish and then resume operating? > > It's called a pipe in Unix systems. Yes, pipes can also be used in Windows. In Python, use the subprocess module for this.
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Pipes rogerh906@gmail.com - 2015-08-09 07:10 -0700
Re: Pipes Ian Kelly <ian.g.kelly@gmail.com> - 2015-08-09 11:13 -0600
Re: Pipes rogerh906@gmail.com - 2015-08-09 10:39 -0700
Re: Pipes Ian Kelly <ian.g.kelly@gmail.com> - 2015-08-09 11:52 -0600
Re: Pipes Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-08-09 19:34 +0100
Re: Pipes rogerh906@gmail.com - 2015-08-09 10:55 -0700
Re: Pipes Emile van Sebille <emile@fenx.com> - 2015-08-09 11:51 -0700
Re: Pipes alister <alister.nospam.ware@ntlworld.com> - 2015-08-09 18:55 +0000
Re: Pipes Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2015-08-09 16:43 -0400
Re: Pipes Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-08-09 22:18 +0100
Re: Pipes Cameron Simpson <cs@zip.com.au> - 2015-08-10 08:27 +1000
RE: Pipes "Clayton Kirkwood" <crk@godblessthe.us> - 2015-08-09 17:44 -0700
Re: Pipes Chris Angelico <rosuav@gmail.com> - 2015-08-10 20:50 +1000
Re: Pipes Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-08-10 14:44 +0100
Re: Pipes rogerh906@gmail.com - 2015-08-10 07:05 -0700
Re: Pipes Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-08-10 15:36 +0100
Re: Pipes Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2015-08-09 14:17 -0400
Re: Pipes "E.D.G." <edgrsprj@ix.netcom.com> - 2015-08-10 15:43 -0500
Re: Pipes Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-08-10 22:59 +0100
Re: Pipes Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2015-08-10 18:41 -0400
Re: Pipes Larry Hudson <orgnut@yahoo.com> - 2015-08-10 21:48 -0700
Re: Pipes Laura Creighton <lac@openend.se> - 2015-08-11 11:07 +0200
Re: Pipes Laura Creighton <lac@openend.se> - 2015-08-11 11:58 +0200
Re: Pipes Tim Golden <mail@timgolden.me.uk> - 2015-08-11 11:15 +0100
csiph-web