├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── MonkeyType-Bot-main.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml └── modules.xml ├── LICENSE ├── MonkeyBot.py ├── README.md ├── chromedriver.exe ├── geckodriver.exe └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/monkeytype-bot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/monkeytype-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/MonkeyType-Bot-main.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/monkeytype-bot/HEAD/.idea/MonkeyType-Bot-main.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/monkeytype-bot/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/monkeytype-bot/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/monkeytype-bot/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/monkeytype-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /MonkeyBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/monkeytype-bot/HEAD/MonkeyBot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/monkeytype-bot/HEAD/README.md -------------------------------------------------------------------------------- /chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/monkeytype-bot/HEAD/chromedriver.exe -------------------------------------------------------------------------------- /geckodriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/monkeytype-bot/HEAD/geckodriver.exe -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyAutoGUI==0.9.54 2 | pynput==1.7.6 3 | selenium==4.14.0 4 | --------------------------------------------------------------------------------