import logging
import signal
import sys
-from typing import List
+from typing import List, Optional
import readchar # type: ignore
def single_keystroke_response(
- valid_responses: List[str],
+ valid_responses: Optional[List[str]], # None = accept anything
*,
prompt: str = None,
default_response: str = None,
raise exceptions.TimeoutError()
def _single_keystroke_response_internal(
- valid_responses: List[str], timeout_seconds=None
+ valid_responses: Optional[List[str]], timeout_seconds: int = None
) -> str:
os_special_keystrokes = [3, 26] # ^C, ^Z
if timeout_seconds is not None:
while True:
response = readchar.readchar()
logger.debug('Keystroke: 0x%x', ord(response))
- if response in valid_responses:
+ if not valid_responses or response in valid_responses:
break
if ord(response) in os_special_keystrokes:
break
).lower()
+def press_any_key(prompt: str = "Press any key to continue...", *, timeout_seconds=None) -> str:
+ return single_keystroke_response(None, prompt=prompt, timeout_seconds=timeout_seconds)
+
+
def keystroke_helper() -> None:
"""Misc util to watch keystrokes and report what they were."""