zeth / inputs

Cross-platform Python support for keyboards, mice and gamepads
BSD 3-Clause "New" or "Revised" License
269 stars 87 forks source link

expand readthedocs #73

Open fsofras opened 5 years ago

fsofras commented 5 years ago

It would be nice for many of us to have a list of methods and properties of this excellent library

isibley765 commented 5 years ago

An API listing would be incredibly useful, yes

Listing classes, functions, and variables and how to reference them

Right now I can't get a GamePad class and figure out how to reference its logged events on its own without the while loop in your examples, and that while loop locking up processing for anything else isn't useful for more dynamic applications.

Batcastle commented 5 years ago

I agree. I need to be able to figure out when a button on a gamepad is being pressed cause the example just shows analogue stick coordinates when run.

czimm79 commented 5 years ago

This is what I am trying to do! Did anyone figure out how to reference the logged events without a while loop? I'm currently using it for a PyQt application but even inside of a QThread it lags the rest of my application..