Does single char input, like C getch/getche
Project description
The getch module does single-char input by providing wrappers for the conio.h library functions getch() (gets a character from user input, no output - this is useful for password input) and getche() (also outputs to the screen), if conio.h does not exist, it uses a stub-library using termios.h and other headers to emulate this behaviour:
import getch # ... char = getch.getch() # User input, but not displayed on the screen # or char = getch.getche() # also displayed on the screen
Hint: On Windows, you can use:
import msvcrt # ... char = msvcrt.getch() # or, to display it on the screen char = msvcrt.getche()
as a standard library alternative to this module
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
getch-1.0.tar.gz
(1.3 kB
view hashes)
getch-1.0-python2.tar.gz
(1.2 kB
view hashes)