[Python]程序未聚焦时的日志键

时间:2015-11-18 16:14:59

标签: python logging key

我不想制作记录密钥的程序。但是,当程序没有集中时,是否可以这样做?我只知道在重点关注程序时如何做到这一点。

当程序聚焦时使用pygame:

记录键
import pygame
from pygame.locals import *
import sys

pygame.init()

width, height = 300, 300

display = pygame.display.set_mode((width,  height))

while True:
    for event in pygame.event.get():
        if event.type == QUIT:
            pygame.quit()
            sys.exit()
        if event.type == KEYDOWN:
            print chr(event.key)

0 个答案:

没有答案