Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way of reading one single character from the user input? For instance, they press one key at the terminal and it is returned. Sort of like getch(). I know that there is a function in windows for it, but I'd like something that is cross-platform.

Thanks.

share|improve this question

4 Answers

up vote 22 down vote accepted

Here's a link to a site that says how you can read a single character in both Windows and Linux: http://code.activestate.com/recipes/134892/

share|improve this answer
4  
code seems short enough that you could just include it, but +1 for finding a good (cross-platform) answer so quickly. – John Mulder Feb 4 '09 at 7:24
Does it handle non-latin (e.g., cyrillic) letters well? I am having a problem with that and can't figure out, if it is my mistake, or not. – Ilya Mar 29 at 18:01
sys.stdin.read(1)

will basically read 1 byte from STDIN.

If you must use the method which does not wait for the \n you can use this code as suggested in previous answer:

class _Getch:
    """Gets a single character from standard input.  Does not echo to the screen."""
    def __init__(self):
        try:
            self.impl = _GetchWindows()
        except ImportError:
            self.impl = _GetchUnix()

    def __call__(self): return self.impl()


class _GetchUnix:
    def __init__(self):
        import tty, sys

    def __call__(self):
        import sys, tty, termios
        fd = sys.stdin.fileno()
        old_settings = termios.tcgetattr(fd)
        try:
            tty.setraw(sys.stdin.fileno())
            ch = sys.stdin.read(1)
        finally:
            termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
        return ch


class _GetchWindows:
    def __init__(self):
        import msvcrt

    def __call__(self):
        import msvcrt
        return msvcrt.getch()


getch = _Getch()

(taken from http://code.activestate.com/recipes/134892/)

share|improve this answer
5  
I find it odd that sys.stdin.read(1) waits for a \n, lol. Thanks for the submission, though. – Evan Fosmark Feb 4 '09 at 8:00
1  
One character or one byte? That's not the same. – chryss Feb 4 '09 at 15:08
2  
@Evan, that's because python is in line buffered mode by default – gnibbler Oct 13 '09 at 11:09
Note that this code blocks you from using ^C or ^D! – Tim R. Jun 26 '12 at 1:29

An alternative method:

import os
import sys    
import termios
import fcntl

def getch():
  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)
  fcntl.fcntl(fd, fcntl.F_SETFL, oldflags | os.O_NONBLOCK)

  try:        
    while 1:            
      try:
        c = sys.stdin.read(1)
        break
      except IOError: pass
  finally:
    termios.tcsetattr(fd, termios.TCSAFLUSH, oldterm)
    fcntl.fcntl(fd, fcntl.F_SETFL, oldflags)
  return c

From this blog post.

share|improve this answer

I think it gets extremely clunky at this point, and debugging on the different platforms is a big mess.

You'd be better off using something like pyglet, pygame, cocos2d - if you are doing something more elaborate than this and will need visuals, OR curses if you are going to work with the terminal.

Curses is standard: http://docs.python.org/library/curses.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.