Views
No views yet
mnk_typer.py: Python script that simulates real keyboard input.injector.js: Helper script to bridge text from browser to Python.pip install -r requirements.txtF12 or Ctrl+Shift+J).injector.js into the console.
python mnk_typer.pyInsert key to copy current words to clipboard.Insert key again to START typing.Esc to stop at any time.mnk_typer.py:1CONFIG = {
2 "min_wpm": 310,
3 "max_wpm": 550,
4
5 # Imperfections (0.0 - 1.0)
6 "wrong_char_rate": 0.025,
7 "adjacent_key_rate": 0.02,
8 "hesitation_rate": 0.04,
9 "burst_rate": 0.08,
10
11 # Timing
12 "hesitation_multiplier": 3.5,
13 "burst_speed_multiplier": 0.5,
14}