https://github.com/moderrek/kecker
Python-based keyboard auto clicker with commands system.
https://github.com/moderrek/kecker
auto-clicker auto-keypress autoclick autoclick-bot autoclicker automation clicker hacktoberfest kecker keyboard keyboard-automation
Last synced: 4 months ago
JSON representation
Python-based keyboard auto clicker with commands system.
- Host: GitHub
- URL: https://github.com/moderrek/kecker
- Owner: Moderrek
- License: mit
- Created: 2023-12-29T00:11:26.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-24T15:38:46.000Z (about 1 year ago)
- Last Synced: 2024-12-30T17:46:06.496Z (6 months ago)
- Topics: auto-clicker, auto-keypress, autoclick, autoclick-bot, autoclicker, automation, clicker, hacktoberfest, kecker, keyboard, keyboard-automation
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kecker

The Python-based keyboard auto clicker with commands system.
# Quick start
```shell
git clone https://github.com/Moderrek/kecker.git
cd kecker/
pip install pynput
python main.py
> toggle .
Set toggle key to .
> key i
Current tapping key is i
> speed 2
Set tap/sec to 2.0
```
Enjoy usage :)# How to run
* Download [Python](https://www.python.org/downloads/).
* Execute in terminal ``pip install pynput``
* Then run downloaded file.# Usage
Kecker is terminal program with commands.
1. Set the clicking key "a" by command ``key a``
2. Set the clicking speed (x per sec) by ``speed x``
3. Start by command ``start`` (end by ``stop``) or set toggle key ``toggle .``
4. Then tap the "." to start end clicking# Commands
| Command | Description |
|--------------------|-------------------------------|
| info | Prints the program info |
| start | Starts tapping the key |
| stop | Stops tapping the key |
| end | Kills the program |
| config | Prints the config |
| key | Sets/Gets the tap key |
| speed | Sets/Gets the key tap per sec |
| toggle | Sets/Gets the toggle key |