A little thing i made because i couldn't find any keyboard auto presser/clicker.
Use this with caution!.
- Hotkeys are not an option.
- Timer setting will eventually be added
- Make sure Python is installed
- Make sure pip is installed
- Create a venv
python -m venv venv
- Activate your venv
.\venv\Scripts\Activate.ps1
(powershell)
- Install requirements
pip install -r requirements.txt
- Run clicker.py
python clicker.py
If you made changes to the code you can build your own .exe very easily.
- Install pyinstaller
pip install pyinstaller
- Use pyinstaller
pyinstaller clicker.py --onefile -w
- --onefile: provides just a single .exe file
- -w removes the cli
- If you dont want a single cli and need all the other files, just remove it from the command.