up vote 4 down vote favorite
1
share [g+] share [fb]

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.

link|improve this question

60% accept rate
5  
Since it was asked before, why are you asking again? What do you think has changed that will yield a different answer? – S.Lott May 26 '09 at 17:41
Maybe there's someone around now who can answer it, but the old question is buried in age and obscurity. How can you "bump" someone else's old question? – Craig McQueen May 27 '09 at 2:42
when it was previously asked, the answer was about detecting mouse clicks, which was nowhere near an answer to that question! – Badri May 27 '09 at 3:41
feedback

3 Answers

from ctypes import Structure, windll, c_uint, sizeof, byref

class LASTINPUTINFO(Structure):
    _fields_ = [
        ('cbSize', c_uint),
        ('dwTime', c_uint),
    ]

def get_idle_duration():
    lastInputInfo = LASTINPUTINFO()
    lastInputInfo.cbSize = sizeof(lastInputInfo)
    windll.user32.GetLastInputInfo(byref(lastInputInfo))
    millis = windll.kernel32.GetTickCount() - lastInputInfo.dwTime
    return millis / 1000.0

Call get_idle_duration() to get idle time in seconds.

link|improve this answer
works like a charm – Claudiu Nov 29 '10 at 15:49
feedback

Seems like GetLastInputInfo is now available in pywin32:

win32api.GetLastInputInfo()

does the trick and returns the timer tick from the last user input action.

Here with an example program

import time
import win32api
for i in range(10):
   print(win32api.GetLastInputInfo())
   time.sleep(1)

If one presses a key/moves the mouse while the script sleeps, the printed number changes.

link|improve this answer
feedback

Actually, you can access GetLastInputInfo via the cytpes library:

import ctypes
GetLastInputInfo = ctypes.windll.User32.GetLastInputInfo  # callable function pointer

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.