https://github.com/thyripian/autoclicker
python script for automated left mouse clicks
https://github.com/thyripian/autoclicker
Last synced: about 2 months ago
JSON representation
python script for automated left mouse clicks
- Host: GitHub
- URL: https://github.com/thyripian/autoclicker
- Owner: thyripian
- License: mit
- Created: 2023-06-08T17:03:16.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-08T23:36:38.000Z (about 3 years ago)
- Last Synced: 2025-03-10T21:32:41.395Z (over 1 year ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AutoClicker
Python script for automated left mouse clicks at a set (customizable) interval.
# Usage:
1: Open a CLI and navigate to the directory containing the .py file.
2: Enter the command: python autoclicker.py
3: Wait for the the following output messages: "AutoClicker is running." and "Listener is running."
4. Press F2 to toggle click state (ie - first press starts the auto click, seconds stops it)
5. Press F3 to kill the script and exit.
# Personalization:
Line 26 can be changed to set the time between clicks.
Set the integer as desired for your use case.
EX:
__time.sleep(1)__ = 1 second
__time.sleep(0.5)__ = 1/2 a second, etc.