summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/debug_input_cross_platform.py31
-rwxr-xr-xtools/debug_vt100_input.py32
2 files changed, 63 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())
diff --git a/tools/debug_vt100_input.py b/tools/debug_vt100_input.py
new file mode 100755
index 0000000..d3660b9
--- /dev/null
+++ b/tools/debug_vt100_input.py
@@ -0,0 +1,32 @@
+#!/usr/bin/env python
+"""
+Parse vt100 input and print keys.
+For testing terminal input.
+
+(This does not use the `Input` implementation, but only the `Vt100Parser`.)
+"""
+import sys
+
+from prompt_toolkit.input.vt100 import raw_mode
+from prompt_toolkit.input.vt100_parser import Vt100Parser
+from prompt_toolkit.keys import Keys
+
+
+def callback(key_press):
+ print(key_press)
+
+ if key_press.key == Keys.ControlC:
+ sys.exit(0)
+
+
+def main():
+ stream = Vt100Parser(callback)
+
+ with raw_mode(sys.stdin.fileno()):
+ while True:
+ c = sys.stdin.read(1)
+ stream.feed(c)
+
+
+if __name__ == "__main__":
+ main()