| File | Date | Author | Commit |
|---|---|---|---|
| README.md | 6 days ago |
|
[ec1c36] Initial commit: Add autorecorder and configurat... |
| autoclicker_v1.py | 6 days ago |
|
[ec1c36] Initial commit: Add autorecorder and configurat... |
| requirements.txt | 6 days ago |
|
[84127b] Add requirements.txt |
A lightweight Python GUI automation tool for recording and replaying mouse and keyboard actions.
pip install -r requirements.txt
Run the application:
python autoclicker_v1.py
To create a standalone .exe file (Windows) or executable (Linux):
pip install pyinstaller
For Windows:
pyinstaller --onefile --windowed --name=HaravaRecorder autoclicker_v1.py
For Linux:
pyinstaller --onefile --windowed --name=HaravaRecorder autoclicker_v1.py
dist/ folder--onefile: Creates a single executable file--windowed: Hides the console window (GUI only)--name: Sets the output filenamepyinstaller --onefile --windowed --icon=icon.ico --name=HaravaRecorder autoclicker_v1.py
automationtool/
├── autoclicker_v1.py # Main application
├── requirements.txt # Python dependencies
├── recordings/ # Saved automation recordings (JSON)
└── sequences/ # Saved automation sequences
Open Source - Feel free to use, modify, and distribute.
Contributions are welcome! Feel free to:
- Report bugs
- Suggest features
- Submit pull requests
Issue: PyAutoGUI fails on Linux
- Solution: Install additional dependencies: sudo apt-get install python3-tk python3-dev
Issue: Permissions error when recording
- Solution: Some systems require accessibility permissions for input monitoring
Use this tool responsibly. Automated mouse/keyboard control should only be used for legitimate automation tasks on systems you own or have permission to automate...