pykeycode icon indicating copy to clipboard operation
pykeycode copied to clipboard

Python wrapper around the Mac TIS functions to convert between chars and keycodes

Results 1 pykeycode issues
Sort by recently updated
recently updated
newest added

Non-printable characters.. I was thinking of creating a lookup table of aliases e.g: ``` key_aliases = { '\r': 0x24, '\t': 0x30, '\n': 0x24, 'return' : 0x24, 'tab' : 0x30, 'space'...