Skip to the content.

Auto Clicker

A Python automation tool that allows you to automatically click the mouse at rapid intervals. This is useful for repetitive clicking tasks and can be controlled via keyboard hotkeys.

Features

Requirements

Installation

Install the required dependencies using pip:

pip install -r requirements.txt

How to Use

  1. Run the script by executing the auto_clicker.py file:
python auto_clicker.py
  1. The program will start and display instructions:
    • Press 'S' to start the auto clicker
    • Press 'E' to stop the auto clicker
    • Press 'Q' to quit the program
  2. Once started (by pressing ‘S’), the auto clicker will automatically perform mouse clicks at the current cursor position at fixed intervals (Can be edited in the code).

  3. Press ‘E’ to stop the clicking, and press ‘Q’ to exit the program entirely.

Caution

⚠️ WARNING: Use this tool responsibly. Automated clicking can:

Always ensure you have full control over what the auto clicker is doing before starting it.

How It Works

The script uses the following libraries:

The program runs in an infinite loop, continuously checking if the ‘q’ key is pressed (to exit) and performing clicks when the clicking flag is set to True.