'此过程不可信!在将输入事件监视添加到辅助功能客户端之前,将无法对其进行监视。'

问题描述 投票:0回答:1

我正在使用 pynput 作为自动点击器程序,该程序需要输入监控(我在 mac 上),但它总是提示“此进程不受信任!”在将输入事件监视添加到辅助功能客户端之前,将无法对其进行监视。'

import time
import threading
from pynput.mouse import Button, Controller
from pynput.keyboard import Listener, KeyCode


delay = 0.001
button = Button.left
start_stop_key = KeyCode(char='s')
exit_key = KeyCode(char='e')


class ClickMouse(threading.Thread):
    def __init__(self, delay, button):
        super(ClickMouse, self).__init__()
        self.delay = delay
        self.button = button
        self.running = False
        self.program_running = True

    def start_clicking(self):
        self.running = True

    def stop_clicking(self):
        self.running = False

    def exit(self):
        self.stop_clicking()
        self.program_running = False

    def run(self):
        while self.program_running:
            while self.running:
                mouse.click(self.button)
                time.sleep(self.delay)
            time.sleep(0.1)


mouse = Controller()
click_thread = ClickMouse(delay, button)
click_thread.start()


def on_press(key):
    if key == start_stop_key:
        if click_thread.running:
            click_thread.stop_clicking()
        else:
            click_thread.start_clicking()
    elif key == exit_key:
        click_thread.exit()
        listener.stop()


with Listener(on_press=on_press) as listener:
    listener.join()
    

(不是我的代码)

我允许 PyCharm 和终端监控输入,这为另一个用户解决了同样的问题,但对我来说不起作用。是否还需要其他文件或应用程序才能访问 inout 监控?

python macos
1个回答
0
投票

如果您从终端运行 Python 代码,您可以将终端作为您的辅助服务之一。

我使用的是 MacOS Sonoma 14.5,因此让它在 Sonoma 下工作的步骤如下;但请记住,这可能会根据您使用的版本而有所不同。

  1. 前往系统设置
  2. 隐私和安全 --> 辅助功能
  3. 添加您的终端应用程序。您也可以尝试在此处添加PyCharm
© www.soinside.com 2019 - 2024. All rights reserved.