├── .gitignore ├── LICENSE ├── README.md ├── auto_meow.py ├── auto_meow.spec ├── dist └── auto_meow.exe └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /dist/window_settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afoim/AutoMeow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afoim/AutoMeow/HEAD/README.md -------------------------------------------------------------------------------- /auto_meow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afoim/AutoMeow/HEAD/auto_meow.py -------------------------------------------------------------------------------- /auto_meow.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afoim/AutoMeow/HEAD/auto_meow.spec -------------------------------------------------------------------------------- /dist/auto_meow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afoim/AutoMeow/HEAD/dist/auto_meow.exe -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afoim/AutoMeow/HEAD/requirements.txt --------------------------------------------------------------------------------