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: 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: References: From: Ian Kelly Date: Sun, 9 Aug 2015 11:13:41 -0600 Subject: Re: Pipes To: Python 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: 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 On Sun, Aug 9, 2015 at 8:10 AM, 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.