A small utility that will read from multiple files and type them at a predefined speed
Go to file
David Todd 08493e39bd update readme 2019-02-20 19:41:44 -06:00
.gitignore initial commit 2019-02-20 18:20:47 -06:00
README update readme 2019-02-20 19:41:44 -06:00
main.py Add the main program 2019-02-20 19:32:04 -06:00
requirements.txt require keyboard library 2019-02-20 18:21:34 -06:00

README

autotyper, totally not nefarious at all.

The only requirement other than stdlib is `keyboard`, which can be installed with `pip install -r requirements.txt`. It is recommended to run this in a virtualenv

This is a simple program that takes the following arguments: `python main.py <delay> <filenames>`
* delay - This is the amount of time in seconds to wait between typing each character. Accepts float values to make it go fast
* filenames - All other arguments will be considered a file, and the script will attempt to read each one sequentially

If you are running this on a POSIX system, you will need to be root as this will create a dummy keyboard device

There is a kill switch that you can press at any time (F6), which will abort the script.
There is also a 5 second grace period before the program will start typing.

License: MIT