How do I detect if the system is idle in windows using python. i.e. no keyboard or mouse activity. This has already been asked before. And there seems to be no GetLastInputInfo in pywin32 module.
feedback
|
Call | |||
|
feedback
|
|
Seems like
does the trick and returns the timer tick from the last user input action. Here with an example program
If one presses a key/moves the mouse while the script sleeps, the printed number changes. | |||
|
feedback
|
|
Actually, you can access
This might not be what you want though, as it does not provide idle information across the whole system, but only about the session that called the function. See MSDN docs. Alternatively, you could check if the system is locked, or if the screen-saver has been started. | |||
|
feedback
|