Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'from:addr:yahoo.co.uk': 0.04; 'lawrence': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'url:github': 0.09; 'python': 0.11; 'language.': 0.14; 'element.': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'sudo': 0.16; 'all.': 0.16; 'language': 0.16; 'wrote:': 0.18; 'module': 0.19; 'input': 0.22; 'print': 0.22; 'header:User-Agent:1': 0.23; '2.x': 0.24; 'keyboard': 0.24; 'sean': 0.24; 'code:': 0.26; 'header:X -Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'dos': 0.30; 'quite': 0.32; 'text': 0.33; 'screen': 0.34; 'display': 0.35; 'except': 0.35; 'something': 0.35; 'next': 0.36; 'list': 0.37; 'to:addr:python-list': 0.38; 'delete': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'eventually': 0.60; "you're": 0.61; 'our': 0.64; 'equals': 0.68; 'press': 0.70; 'action.': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Mark Lawrence Subject: Re: Dos cursor and input management. Date: Sun, 05 Jan 2014 17:08:43 +0000 References: <58EDD9C8-2310-46EA-8E77-2C3B049C8BFC@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: host-78-147-23-216.as13285.net User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 In-Reply-To: <58EDD9C8-2310-46EA-8E77-2C3B049C8BFC@gmail.com> 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: 31 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1388941743 news.xs4all.nl 2871 [2001:888:2000:d::a6]:42331 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:63202 On 05/01/2014 09:25, Sean Murphy wrote: > Hi all. > > I am after a module that manages keyboard input. I am aware of raw_input for python 2.x and input for 3.x. They don't quite achieve what I want. > > I want to except a single key without printing it to the screen and then the key would perform an action. Sudo code: > > print line of text > wait for key press > If key press equals delete line. > Delete list element. > else if key press equals edit > display line for interactive edit. > else > move to next line > > > The module must work under dos for now. Eventually Mac. > > Sean > I think you're looking for something like this https://github.com/jmcb/python-pdcurses -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence