summaryrefslogtreecommitdiffstats
path: root/tools/debug_input_cross_platform.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 17:35:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 17:35:20 +0000
commite106bf94eff07d9a59771d9ccc4406421e18ab64 (patch)
treeedb6545500e39df9c67aa918a6125bffc8ec1aee /tools/debug_input_cross_platform.py
parentInitial commit. (diff)
downloadprompt-toolkit-e106bf94eff07d9a59771d9ccc4406421e18ab64.tar.xz
prompt-toolkit-e106bf94eff07d9a59771d9ccc4406421e18ab64.zip
Adding upstream version 3.0.36.upstream/3.0.36upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tools/debug_input_cross_platform.py')
-rwxr-xr-xtools/debug_input_cross_platform.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/tools/debug_input_cross_platform.py b/tools/debug_input_cross_platform.py
new file mode 100755
index 0000000..55f6190
--- /dev/null
+++ b/tools/debug_input_cross_platform.py
@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+"""
+Read input and print keys.
+For testing terminal input.
+
+Works on both Windows and Posix.
+"""
+import asyncio
+
+from prompt_toolkit.input import create_input
+from prompt_toolkit.keys import Keys
+
+
+async def main() -> None:
+ done = asyncio.Event()
+ input = create_input()
+
+ def keys_ready():
+ for key_press in input.read_keys():
+ print(key_press)
+
+ if key_press.key == Keys.ControlC:
+ done.set()
+
+ with input.raw_mode():
+ with input.attach(keys_ready):
+ await done.wait()
+
+
+if __name__ == "__main__":
+ asyncio.run(main())