Python Auto Clicker
- GUI coming soon.
- setup.py coming soon.
- Run the following commands in your terminal.
-
git clone https://github.com/Chaottiic/PyClicker
-
cd PyClicker
-
virtualenv venv
-
source venv/bin/activate
-
pip install -r requirements.txt
-
python main.py
- Before running
python main.py
, make sure to edit the following variables below in the top ofmain.py
.
DELAY
=0.005
-
- Delay is in seconds.
TOGGLE_KEY
=Key.shift_r
END_KEY
=Key.end
-
- You can find the supported keyboard keys here!
MOUSE_BUTTON
=Button.right
-
- Supported Mouse Buttons are
Right
, andLeft
.
- Supported Mouse Buttons are
- MIT