├── .gitignore ├── LICENSE ├── README.md ├── library.py ├── requirements.txt └── webserver.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onurkun/puzzle-captcha-resolver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onurkun/puzzle-captcha-resolver/HEAD/README.md -------------------------------------------------------------------------------- /library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onurkun/puzzle-captcha-resolver/HEAD/library.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | simplejson 2 | opencv-python 3 | Image 4 | numpy -------------------------------------------------------------------------------- /webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onurkun/puzzle-captcha-resolver/HEAD/webserver.py --------------------------------------------------------------------------------