gpt4 book ai didi

python - 在 python 中创建一个基本的自动答题器

转载 作者:太空宇宙 更新时间:2023-11-04 08:43:23 25 4
gpt4 key购买 nike

我想创建一个非常简单的自动点击器,它将占据鼠标的位置,只要“active”为真并以“input”的速度(每秒点击次数)点击该位置

我看过这段代码,但它不适合我的需要

import win32api, win32con
def click(x,y):
win32api.SetCursorPos((x,y))
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN,x,y,0,0)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP,x,y,0,0)
click(10,10)

我希望代码看起来像这样,

import library 

input = 5 ## in clicks per second

if (some key) is held:
active = True

if (some key) is released:
active = False


while active:
*gets position of mouse*
*clicks at that position at input's speed (5)

如果在屏幕正中央有一个点击选项就好了。

最佳答案

尝试使用 pyautogui。我已经在几个项目中使用过它。它具有巨大的功能和更少的代码。例如,如果您想点击屏幕中间,只需执行以下操作:

import pyautogui
width, height = pyautogui.size()
pyautogui.click(width/2, height/2)

在您的情况下,您可以使用时间模块来同步操作。

这是 cheat sheet of pyautogui .

关于python - 在 python 中创建一个基本的自动答题器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42877783/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com