An open API service indexing awesome lists of open source software.

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

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.