Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Peter Otten <__peter__@web.de> Newsgroups: comp.lang.python Subject: Re: raw_input and break Date: Thu, 05 Nov 2015 15:16:23 +0100 Organization: None Lines: 58 Message-ID: References: <0pI_x.14172$aq1.6942@fe58.am1> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Trace: news.uni-berlin.de 3AqVAWdVJS6038RJNJAdjQQRDqMHKFcFi3ZYsO+b+Lsw== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'url:pypi': 0.03; 'resulting': 0.04; 'none:': 0.05; 'sys,': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.10; 'python.': 0.11; 'def': 0.13; '(there': 0.16; 'caring': 0.16; 'contextlib': 0.16; 'curses': 0.16; 'prefer.': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'received:t-ipconnect.de': 0.16; 'recipes': 0.16; 'stdin': 0.16; 'subject:break': 0.16; 'true:': 0.16; 'url:faq': 0.16; 'wrote:': 0.16; 'library,': 0.18; 'script.': 0.18; 'input': 0.18; 'bit': 0.23; 'wrote': 0.23; 'import': 0.24; 'unix': 0.24; 'module': 0.25; 'script': 0.25; 'header:User-Agent:1': 0.26; 'header:X-Complaints- To:1': 0.26; 'connected': 0.27; 'function': 0.28; 'cat': 0.29; 'board': 0.30; 'code': 0.30; 'problem': 0.33; 'url:python': 0.33; 'choices': 0.33; 'skip:~ 10': 0.33; 'asking': 0.35; 'reply.': 0.35; 'but': 0.36; 'there': 0.36; 'url:org': 0.36; 'to:addr :python-list': 0.36; 'subject:: ': 0.37; 'thanks': 0.37; 'received:org': 0.37; 'no,': 0.38; 'to:addr:python.org': 0.40; 'received:de': 0.40; 'easy': 0.60; 'waiting': 0.60; 'press': 0.61; 'further': 0.62; 'details': 0.62; 'reply': 0.68; 'below:': 0.71; 'ready-made': 0.84; 'robot': 0.91 X-Injected-Via-Gmane: http://gmane.org/ X-Gmane-NNTP-Posting-Host: p57bd897d.dip0.t-ipconnect.de User-Agent: KNode/4.13.3 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: , Xref: csiph.com comp.lang.python:98304 input/ldompeling@casema.nl wrote: > In reply to "Peter Otten" who wrote the following: > >> input/ldompeling@casema.nl wrote: >> >> > > choices = raw_input("letter s to stop:") >> > >> > Oh no, this is not what I want. Now it is waiting for input when its go >> > further with the script. Because I have an while True: so I want that >> > the script go's continue only when I press a key then it must stop the >> > script. >> >> Solutions to that problem are OS-dependent. For Unix terminals >> >> https://docs.python.org/2/faq/ >> library.html#how-do-i-get-a-single-keypress-at-a-time >> >> shows one way which I used to write the contextmanager below: >> >> $ cat capture_key.py >> import termios, fcntl, sys, os >> >> from contextlib import contextmanager >> >> >> @contextmanager >> def nonblocking(stdin=None): >> if stdin is None: >> stdin = sys.stdin >> >> fd = sys.stdin.fileno() >> >> oldterm = termios.tcgetattr(fd) >> newattr = termios.tcgetattr(fd) >> newattr[3] = newattr[3] & ~termios.ICANON & ~termios.ECHO >> termios.tcsetattr(fd, termios.TCSANOW, newattr) >> >> oldflags = fcntl.fcntl(fd, fcntl.F_GETFL) > Thanks for the reply. Is there no easy way to do so in python ? If you are asking for a ready-made function in the standard library, I don't know one and I don't think there is one (there are recipes that work on top of curses though). > I am using the raspberry pi with Wheezy and for the robot the GoPiGo which > is connected on the raspberry pi. The GoPiGo board has his own code like: > fwd()="forward" bwd()="backward" right()="right" left="left" and so on. I > am just a dummie with python. The code in capture_key.py may look a bit scary, but just as I took it without bothering the details you can take the resulting module without caring about the code in it. Alternatively you can search https://pypi.python.org for a solution that you prefer.