在python中模拟按键 [英] Simulating a keypress in python

查看:39
本文介绍了在python中模拟按键的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

好吧,我知道这个问题看起来像是重复的,但我认为不是.我已经阅读了其他有关涉及 ctypes 和 SendKey 的假按键的帖子.但是,我已经尝试过这些,但它们并没有像我想要的那样工作.我不想要与实际击键类似的东西,我想要与击键完全相同的东西.我用 ctypes 运行了一些测试,我注意到按键的行为与真正的按键不同.

Alright, I know this question looks like a duplicate, but I don't think it is. I've read other posts about fake key presses which involve ctypes and SendKey. However, I've tried these and they don't work quite as I want. I don't want something that is similar to an actual keystroke, I want something that does EXACTLY the same thing as a keystroke. I've run some tests with ctypes, and I noticed the key presses don't behave the same as a real keystroke.

例如,如果我打开记事本并按住 A 键,我会得到一个 A 字符,大约一秒钟后它开始填充 As.当我为 A 运行 PressKey() 时,它会输入一个 A,仅此而已.在它之后我仍然需要为 A 运行 ReleaseKey() 以便其他程序不会被搞砸.

For example, if I open up notepad and hold down the A key, I get one A character, and about a second later it starts filling up with As. When I run PressKey() for A, it types a single A and that's it. I still have to run ReleaseKey() for A after it so other programs don't get messed up.

我需要某种方法来执行类似 realKeyPress('A') 的操作,并让它的行为与我按下 A 键时完全一样.另外,谢谢大家,你们总是这么快就给出了很好的答案!

I need some way to do something like realKeyPress('A') and have it behave exactly like I pressed the A key. Also, thanks guys, you're always so fast to respond with nice answers!

推荐答案

所以我毕竟使用了 ctypes.在阅读了与本主题类似的另一个答案后,我修改了 ctypes 代码.这是完成的代码:

So I used ctypes after all. I modified the ctypes code after reading up on another answer similar to this topic. Here's the finished code:

import ctypes
import time

SendInput = ctypes.windll.user32.SendInput

# C struct redefinitions 
PUL = ctypes.POINTER(ctypes.c_ulong)
class KeyBdInput(ctypes.Structure):
    _fields_ = [("wVk", ctypes.c_ushort),
                ("wScan", ctypes.c_ushort),
                ("dwFlags", ctypes.c_ulong),
                ("time", ctypes.c_ulong),
                ("dwExtraInfo", PUL)]

class HardwareInput(ctypes.Structure):
    _fields_ = [("uMsg", ctypes.c_ulong),
                ("wParamL", ctypes.c_short),
                ("wParamH", ctypes.c_ushort)]

class MouseInput(ctypes.Structure):
    _fields_ = [("dx", ctypes.c_long),
                ("dy", ctypes.c_long),
                ("mouseData", ctypes.c_ulong),
                ("dwFlags", ctypes.c_ulong),
                ("time",ctypes.c_ulong),
                ("dwExtraInfo", PUL)]

class Input_I(ctypes.Union):
    _fields_ = [("ki", KeyBdInput),
                 ("mi", MouseInput),
                 ("hi", HardwareInput)]

class Input(ctypes.Structure):
    _fields_ = [("type", ctypes.c_ulong),
                ("ii", Input_I)]

# Actuals Functions

def PressKey(hexKeyCode):
    extra = ctypes.c_ulong(0)
    ii_ = Input_I()
    ii_.ki = KeyBdInput( 0, hexKeyCode, 0x0008, 0, ctypes.pointer(extra) )
    x = Input( ctypes.c_ulong(1), ii_ )
    ctypes.windll.user32.SendInput(1, ctypes.pointer(x), ctypes.sizeof(x))

def ReleaseKey(hexKeyCode):
    extra = ctypes.c_ulong(0)
    ii_ = Input_I()
    ii_.ki = KeyBdInput( 0, hexKeyCode, 0x0008 | 0x0002, 0, ctypes.pointer(extra) )
    x = Input( ctypes.c_ulong(1), ii_ )
    ctypes.windll.user32.SendInput(1, ctypes.pointer(x), ctypes.sizeof(x))

这篇关于在python中模拟按键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆