├── .gitignore ├── Procfile ├── README.md ├── agenda ├── app.json ├── config.ini.sample ├── font1.ttf ├── main.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyaadh/baboonCaptcha/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyaadh/baboonCaptcha/HEAD/README.md -------------------------------------------------------------------------------- /agenda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyaadh/baboonCaptcha/HEAD/agenda -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyaadh/baboonCaptcha/HEAD/app.json -------------------------------------------------------------------------------- /config.ini.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyaadh/baboonCaptcha/HEAD/config.ini.sample -------------------------------------------------------------------------------- /font1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyaadh/baboonCaptcha/HEAD/font1.ttf -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyaadh/baboonCaptcha/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyaadh/baboonCaptcha/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.7 --------------------------------------------------------------------------------