See it at:
VERSION | DOWNLOADS | TESTS | COVERAGE |
---|---|---|---|
Library to easily read single chars and key strokes.
Born as a python-inquirer requirement.
The idea is to have a portable way to read single characters and key-strokes.
pip install readchar
The readchar
library is compatible with python 2.6, 2.7, 3.2 and 3.3.
Usage example:
import readchar
c = readchar.readchar()
key = readchar.readkey()
There are just two methods:
Reads the next char from stdin
, returning it as a string with length 1.
Reads the next key-stroke from stdin
, returning it as an string.
A key-stroke can have:
- 1 character for normal keys: 'a', 'z', '9'...
- 2 characters for combinations with ALT: ALT+A, ...
- 3 characters for cursors: ->, <-, ...
- 4 characters for combinations with CTRL and ALT: CTRL+ALT+SUPR, ...
There is a list of previously captured chars with their names in readchar.key
, in order to be used in comparations and so on. This list is not enough tested and it can have mistakes, so use it carefully. Please, report them if found.
Sadly, this library has only being probed on GNU/Linux. Please, if you can try it in another SO and find a bug, put an issue or send the pull-request.
Thank you!
You can download the code, make some changes with their tests, and make a pull-request.
In order to develop or running the tests, you can do:
- Clone the repository.
git clone https://github.com/magmax/python-readchar.git
- Create a virtual environment:
virtualenv venv
- Enter in the virtual environment
source venv/bin/activate
- Install dependencies
pip install -r requirements.txt -r requirements-dev.txt
- Run tests
make
Please, Execute the tests before any pull-request. This will avoid invalid builds.
Copyright (c) 2014, 2015 Miguel Ángel García (@magmax9).
Based on previous work on gist getch()-like unbuffered character reading from stdin on both Windows and Unix (Python recipe), started by Danny Yoo.
Licensed under the MIT license.