1 Star 0 Fork 0

wczcw/playground

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
L.py 559 Bytes
一键复制 编辑 原始数据 按行查看 历史
wczcw 提交于 2021-06-03 23:20 . 苇宝的按键精灵
import win32api
import win32con
import time
import random
class Key:
def __init__(self, key_code) -> None:
self.key_code = key_code
def key_down(self):
win32api.keybd_event(self.key_code, 0, 0, 0)
def key_up(self):
win32api.keybd_event(self.key_code, 0, win32con.KEYEVENTF_KEYUP, 0)
def key_press(self):
self.key_down()
time.sleep(0.05)
self.key_up()
if __name__ == '__main__':
l_key = Key(76)
while True:
l_key.key_press()
time.sleep(random.randint(4, 20) * 0.05)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/watch_out/playground.git
[email protected]:watch_out/playground.git
watch_out
playground
playground
master

搜索帮助