使用 python 监控 Mac 上的全局键盘输入
尝试编写一个程序,允许用户通过全局快捷方式控制程序。我已经在 Windows 上使用 pyHook 有了一个工作版本,但不知道如何在 Mac 上捕获全局输入。到目前为止,我在这里读到的其他问题似乎大多是关于 Linux 而不是 Mac。 (这就是我问的原因)有什么办法可以做到这一点吗?
Trying to write a program that allows users to control a program via global shortcuts. I already have a working version on windows using pyHook but can't figure out how to capture global input on a Mac. The other questions I have read here so far mostly seemed to be about Linux not Mac. (which is why I'm asking) Is there any way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您可以使用
PyObjC
来处理 API 挂钩;请参阅此说明了解该怎么做。I believe you could use
PyObjC
to handle the API hooks; look at this explanation for what to do.