DEBSOURCES
Skip Quicknav
sources / python-blessed / 1.25-1 / bin / keyboard_simple.py
1234567
#!/usr/bin/env python3 from blessed import Terminal term = Terminal() with term.cbreak(): key = term.inkey() print(f"You pressed: {key!r}")