Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!cs.uu.nl!news0.firedrake.org!news.nosignal.org!newsgate.cistron.nl!newsgate.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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'argument': 0.04; 'output': 0.04; 'svn': 0.05; 'python': 0.09; 'exception,': 0.09; 'res': 0.09; 'subject:method': 0.09; 'throws': 0.09; 'library': 0.15; '"echo': 0.16; 'command,': 0.16; 'stdin': 0.16; 'subject:pass': 0.16; 'url:svn': 0.16; 'input': 0.18; 'sender:addr:gmail.com': 0.18; 'all,': 0.21; 'subversion': 0.22; 'help.': 0.22; 'command': 0.24; 'pass': 0.25; 'header:In-Reply- To:1': 0.25; 'header:User-Agent:1': 0.26; 'received:209.85.210.46': 0.27; 'this?': 0.28; 'writes:': 0.29; 'could': 0.32; 'skip:s 30': 0.33; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'list': 0.35; 'process,': 0.35; 'received:209.85': 0.35; 'something': 0.35; 'there': 0.35; 'but': 0.36; 'url:org': 0.36; 'received:209': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'url:ip addr': 0.62; 'email addr:gmail.com': 0.63; 'dont': 0.64; 'validate': 0.65; 'url:0': 0.67; 'received:117': 0.75; 'prompt': 0.78; 'message- id:@mx.google.com': 0.81; 'subject:skip:s 20': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:in-reply-to:references:user-agent:date :message-id:mime-version:content-type; bh=4hcF34aI6TC6//Avz7UQBSnqJN7q6yukB4nvBTl41Cg=; b=Zx3zDhnvYch3RA+iFDsxHuL/twGPRQInNMgckwe1bEOiqnLhUE7Sc1Agm6zK+IECSG NNhy9kvIojx9hv6iU18zALf1V3RZHCmjGBhKAtAgLM7E0IwZuo9SgI0KCjn2hRDNE4kn 37SI0UKZCukb2W0o1q/1UcO2ZdhUuEsbkVnXdJYal3DcDLQtLWPVkgeM0qtUYj+IPjAn YwsT1xdynETSyaY18h1dVUsN0h4U/cFOPcRo4ijHuAFcMEy1udQL62LyCKxrL11242rR ZnCfsY4tSn+Ll1cChLuJVmQu3Ksb8dMzuIttUKXl4CIb3bh8hkP8Vhy5AfNHvNTajaRt FcTw== Sender: Kushal Kumaran From: Kushal Kumaran To: python-list@python.org Subject: Re: how to pass "echo t | " input to subprocess.check_output() method In-Reply-To: References: User-Agent: Notmuch/0.14+83~gae459a3 (http://notmuchmail.org) Emacs/24.1.1 (x86_64-pc-linux-gnu) Date: Mon, 26 Nov 2012 16:32:13 +0530 MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 29 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1353927741 news.xs4all.nl 6898 [2001:888:2000:d::a6]:47681 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:33929 dachakku@gmail.com writes: > Hi all, > > I want to list the repositories in svn using python. For this i have used below command, > " res = subprocess.check_output(["svn.exe", "list", "Https://127.0.0.1:443/svn/Repos"], stderr=subprocess.STDOUT) " > > but it throws an exception, since it requires an user input to validate certificate, > " (R)eject, accept (t)emporarily or accept (p)ermanently? " > > from Command prompt im able to pass the input while calling the process, and im able to get the output > > "echo t | svn list Https://127.0.0.1:443/svn/Repos" > > But i dont know how to pass the "echo t | " in subprocess.check_output while calling a process. > Is there a way to do this? > Please help. You could pass in a stdin argument to subprocess.check_output with a value of 't\n'. However, you might want to use something like http://pysvn.tigris.org/, which is a python library for accessing subversion repositories. -- regards, kushal