File: generate_keys.py

package info (click to toggle)
pytermgui 7.7.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 19,888 kB
  • sloc: python: 12,931; makefile: 40; sh: 37
file content (33 lines) | stat: -rwxr-xr-x 522 bytes parent folder | download
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()