Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!us.feeder.erje.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!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.053 X-Spam-Evidence: '*H*': 0.89; '*S*': 0.00; 'python': 0.09; 'docs.': 0.09; 'library': 0.15; 'tutorials': 0.15; '"programming': 0.16; 'curses': 0.16; 'from:addr:torriem': 0.16; 'from:name:michael torrie': 0.16; 'wrote:': 0.17; 'url:dev': 0.17; 'keyboard': 0.22; 'keys': 0.22; 'seems': 0.23; 'linux': 0.24; 'header:In-Reply- To:1': 0.25; 'header:User-Agent:1': 0.26; '(e.g.': 0.27; 'am,': 0.27; 'this.': 0.29; 'url:python': 0.32; 'to:addr:python-list': 0.33; 'something': 0.35; 'received:org': 0.36; 'but': 0.36; 'message-id:@gmail.com': 0.36; 'url:org': 0.36; 'does': 0.37; 'subject:: ': 0.38; 'url:docs': 0.38; 'page': 0.38; 'several': 0.39; 'to:addr:python.org': 0.39; 'received:192': 0.39; 'received:192.168': 0.40; 'header:Received:5': 0.40; 'grab': 0.64; 'offer': 0.65; 'useful.': 0.65; 'direct': 0.69; '(direct)': 0.84; 'this...': 0.84; 'tricky': 0.91 X-Virus-Scanned: amavisd-new at torriefamily.org Date: Sun, 13 Jan 2013 09:46:31 -0700 From: Michael Torrie User-Agent: Mozilla/5.0 (X11; Linux i686; rv:10.0.11) Gecko/20121115 Thunderbird/10.0.11 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Keyboard hook in linux References: <50F2DD28.9020001@nic.fi> In-Reply-To: <50F2DD28.9020001@nic.fi> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit 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: 13 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1358095598 news.xs4all.nl 6850 [2001:888:2000:d::a6]:43883 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:36741 On 01/13/2013 09:13 AM, K. Elo wrote: > I have searched in the Web and in several tutorials (e.g. "Programming > python"), but this seems to be a tricky one. The 'pyHook' library seems > to offer a keyboard hook manager, but 'pyHook' is not available for > linux :( IMHO, the 'curses' library offers no (direct) solution to this... You're wrong. curses does offer a direct solution to this. Check the docs. Also here's a nice intro document for Python 3: http://docs.python.org/dev/howto/curses.html You can check to see if a keystroke is waiting, grab it and then do something useful. curses can even grab keys like page up or page down.