1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#!/usr/bin/env python3
from string import ascii_lowercase
header = """\
\"\"\"
pytermgui.keys
--------------
author: generate_keys.py :)
This file is generated to house the Keys class.
\"\"\"
class Keys:
UP = "\
"""
def main() -> None:
lines = []
for i, letter in enumerate(ascii_lowercase):
lines.append(
f" CTRL_{letter.upper()} = \"{chr(i+1).encode('unicode_escape').decode('utf-8')}\""
)
print(header + "\n".join(lines))
if __name__ == "__main__":
main()
|