# Auto Click **Repository Path**: harry-private/auto-click ## Basic Information - **Project Name**: Auto Click - **Description**: 用PyQt5实现得定时自动点击器 - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2021-10-28 - **Last Updated**: 2024-04-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: PyQt5 ## README # 介绍 使用PyQt5实现的定时自动点击工具,解放双手 # 如何开始 1. 下载 AutoClick.exe 2. 点击激活 3. 输入定时时间(默认10秒) 4. 输入点击间隔(默认0.1秒) 5. 勾选 **home** 键控制开始/结束 # 如何使用源码 1. 下载安装python3 (3.10.6) 2. 安装依赖 ```bash pip install -r requirements.txt ``` 3. 运行 auto_click.py ```bash python auto_click.py ``` 4. Windows 上编译成exe ```bash pyinstaller --noconsole --onefile --exclude-module _bootlocale --name AutoClick '.\auto_click.py' ``` ## 其他 导出依赖列表 ```bash pip freeze > requirements.txt ```