Skip to main content

Python library to read from stdin a single char, keypress (with escape sequences) or line.

Project description

readkeys

pypi version supported Python version license

Python library to read from stdin a single char, keypress (with escape sequences) or line.

Originally a fork of magmax/python-readchar, it was rewritten to fix some bugs and better support UNIX and Windows systems.

Usage

import readkeys

ch = readkeys.getch()  # get a single character
key = readkeys.getkey()  # get a single keypress
line = readkeys.getline()  # get a line of text
line2 = readkeys.getline(raw=False)  # Get a line of text and print out characters as they are typed, similar to built-in input.
flush = readkeys.flush()  # flush stdin

Functions

getch

The getch function reads a single character byte from stdin. The buffer is not flushed after read.

The function has the following type signature: getch(NONBLOCK: bool = False, encoding: str = None, raw: bool = True) -> str

  • NONBLOCK: bool use non-blocking mode when reading from stdin, defaults to False. The library may encounter unforeseen errors if set to True.
  • encoding: str specify an encoding (e.g. utf-8) to be used to decode bytes from the stdin buffer. If unspecified it assumes characters can be directly extracted from stdin.
  • raw: bool put tty terminal in raw mode before reading, see tty.setraw. If set to False the characters will still appear in the terminal as they are typed. Settings before changing to raw mode are saved and restored when the read operation is complete.
    The option is ignored on Windows systems as they use a completely different terminal environment and a different library is necessary to read character from stdin: msvcrt.

getkey

The getkey function reads a single keypress from stdin, including escape sequences of function keys. For example arrow keys are returned with their full escape sequence, without leaving anything in the buffer (0x1b5b41, 0x1b5b42, 0x1b5b43 or 0x1b5b44).

The function has the following type signature: getch(getch_fn: Callable[[], str] = None, encoding: str = "", raw: bool = True) -> str

  • getch_fn: Callable[[], str] if passed, use the this function instead of the built-in getch to read the single bytes from stdin. The library may encounter unforeseen errors if this option is used.
  • encoding: str specify an encoding (e.g. utf-8) to be used to decode bytes from the stdin buffer. See getch.
  • raw: bool put tty terminal in raw mode before reading. See getch.

getline

The getline function reads a full line of characters from stdin, including non-standard keys (e.g. arrow keys). It defaults to raw mode, leaving characters unprinted on screen.

The function has the following type signature: (getch_fn: Optional[Callable[[], str]] = None, encoding: str = None, raw: bool = True) -> str

  • getch_fn: Callable[[], str] if passed, use the this function instead of the built-in getch to read the single bytes from stdin. The library may encounter unforeseen errors if this option is used.
  • encoding: str specify an encoding (e.g. utf-8) to be used to decode bytes from the stdin buffer. See getch.
  • raw: bool put tty terminal in raw mode before reading. See getch.

flush

The flush function removes any leftover byte from stdin and returns them as a string. It is useful to clear the buffer from any remaining bytes after doing a single read with getch.

The function has the following type signature: flush() -> str

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

readkeys-1.0.2.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

readkeys-1.0.2-py3-none-any.whl (9.3 kB view details)

Uploaded Python 3

File details

Details for the file readkeys-1.0.2.tar.gz.

File metadata

  • Download URL: readkeys-1.0.2.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.10 CPython/3.8.5 Darwin/19.5.0

File hashes

Hashes for readkeys-1.0.2.tar.gz
Algorithm Hash digest
SHA256 0ea2a6a7e2993a454d53c90fbdcd7d526d12ade30c23049c1dc7398d1d7b32de
MD5 0e4b236a713f2727e7a06004ac81e16d
BLAKE2b-256 38bfd16f025af693b48848004a3bd582c912d6937b481204cbaccbeda54ba47c

See more details on using hashes here.

File details

Details for the file readkeys-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: readkeys-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 9.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.10 CPython/3.8.5 Darwin/19.5.0

File hashes

Hashes for readkeys-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2b113c4f0726df495ace2b031f174c17b77c576f014c347bb6d92d87d4f6a298
MD5 af3182154d1edcfa98005ed7db5c9354
BLAKE2b-256 22420be0768148dbc7d3f36d19e419edc3abd93ea05037b1debed50dfb880a4a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page