We're working on a Python GUI Automation library called Automa and are finding it difficult to pick a name for the function that programmatically generates key strokes. Currently it's called type. Sample uses are:
Pressing the Enter key:
type(ENTER)Type a sequence of letters:
type("Hello World!")This presses 'H' then 'e' then 'l' etc.
Type Alt- and Control keys in combination with other letters:
type(CTRL + 'a')
The problem is that type is a built-in function in Python. While it's technically not a problem to override this function, we are afraid that doing so might confuse in particular experienced Python programmers.
The question is: How shall we name our function type?
Possibilities include:
typeIf you don't mind the ambiguity with the built-in function and like the shortness of
type.type_keysThis is not ambiguous but longer than
typeand doesn't read as well for typing a single key, as fort instance intype(ENTER).send_keysThis seems to be popular in other automation tools, however we feel it's somewhat too far away from how you would describe the function in everyday English. This is important to us as our tool's API tries to be as close to everyday English as possible.
pressThis is nicely short and reads well for
press(ENTER). However, it doesn't read as well for typing a sequence of characters -press("Hello World!")- and could be confused with trying to press a button. Pressing buttons is something our tool also allows (via a command calledclick).enterkeypress
How to answer this question:
This question is intended more as a poll than as a discussion. In answering, please pick one name and argue why you believe it is the best candidate. Others can vote for your pick and argumentation by up-voting the answer. I will then mark the answer with the most votes as the correct answer.
Thank you very much!

keypressorkeyboard– inspectorG4dget Nov 20 '12 at 15:14generate_keystrokes? Or just name it after your dog... – l4mpi Nov 20 '12 at 15:32type()is a bad name, even if it didn't shadow a built-in, I don't think it was clear. I would arguesend_keys()is the best option. It's pretty clear what is happening, and it's common already. That said, for clarity of what it is doing, I'd go forgenerate_keystrokes(). – Lattyware Nov 20 '12 at 15:43