I am writing a chunk of code to get gather mouse click information using pyHook and then the win32api to get access to a click function. Essentially I am trying to use the mouse
click() gets 2 parameters and you are passing a tuple (event.position is a tuple). Do instead:
def click((x,y)):