its not that difficult. just create your function (example: "function getkey(key_char, key_num, modifier)") and register it with "tpt.register_keypress(getkey)"
key_char will be the letter/symbol on the key ("a" for the A key, "b" for the B key, etc.) key_num will be the internal number of the key (17 for the up arrow, 18 for the down arrow, etc.) modifier will tell stuff like shift, ctrl, etc. (these are really weird numbers, haven't figured them out yet)
your function will be run every time a key is pressed.
@Vovix they are parameters that are sent to the function you use with tpt.register_keypress(), which is basically tpt.register_step(), but instead of being run every frame, it is run every time a key is pressed. So for most purposes, yes, except they can only be used in that function, and they don't change when another key is pressed, the function is just called again.
@gamax92 if you can find a way to send the data over the interwebs
maybe I should try explaining it on the wiki as best as I can...
EDIT: well I didn't explain it, but at least its documented now (I found out how to use this by looking at the source :P)