├── .github └── workflows │ ├── ci-test.yml │ └── release.yml ├── .gitignore ├── 1.png ├── LICENSE ├── README.md ├── README_ZH.md ├── img ├── .DS_Store ├── 0.png ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── all.png ├── do.png ├── do1.png ├── do2.png ├── do3.png ├── do4.png ├── files.png ├── frcc-1.png ├── frcc0.png ├── frcc1.png ├── frcc2.png ├── frcc3.png ├── frcc4.png ├── frcc5.png ├── frcc6.png ├── last.png ├── pay.png └── train.png ├── pycapt ├── __init__.py ├── basic │ ├── __init__.py │ ├── appstore.png │ ├── reset_file_type.py │ ├── resize_img.py │ └── resized_image.png ├── logo │ ├── .gitignore │ ├── __init__.py │ ├── android_logo.py │ ├── appstore.png │ └── ios_logo.py ├── make_captcha │ ├── OpenSans-Bold.ttf │ ├── __init__.py │ ├── easy_mode.py │ ├── make_capt.py │ ├── my_any_img.py │ └── noise.py └── solve_it │ ├── 1.png │ ├── __init__.py │ ├── cut_img.py │ ├── de_line.py │ ├── de_point.py │ └── easy_solve.py ├── setup.py ├── tests ├── test.py └── test_train_img.py └── update_version.py /.github/workflows/ci-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/.github/workflows/ci-test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/.gitignore -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/1.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/README_ZH.md -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/0.png -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/1.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/4.png -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/5.png -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/6.png -------------------------------------------------------------------------------- /img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/7.png -------------------------------------------------------------------------------- /img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/8.png -------------------------------------------------------------------------------- /img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/9.png -------------------------------------------------------------------------------- /img/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/all.png -------------------------------------------------------------------------------- /img/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/do.png -------------------------------------------------------------------------------- /img/do1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/do1.png -------------------------------------------------------------------------------- /img/do2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/do2.png -------------------------------------------------------------------------------- /img/do3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/do3.png -------------------------------------------------------------------------------- /img/do4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/do4.png -------------------------------------------------------------------------------- /img/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/files.png -------------------------------------------------------------------------------- /img/frcc-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/frcc-1.png -------------------------------------------------------------------------------- /img/frcc0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/frcc0.png -------------------------------------------------------------------------------- /img/frcc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/frcc1.png -------------------------------------------------------------------------------- /img/frcc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/frcc2.png -------------------------------------------------------------------------------- /img/frcc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/frcc3.png -------------------------------------------------------------------------------- /img/frcc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/frcc4.png -------------------------------------------------------------------------------- /img/frcc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/frcc5.png -------------------------------------------------------------------------------- /img/frcc6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/frcc6.png -------------------------------------------------------------------------------- /img/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/last.png -------------------------------------------------------------------------------- /img/pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/pay.png -------------------------------------------------------------------------------- /img/train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/img/train.png -------------------------------------------------------------------------------- /pycapt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/__init__.py -------------------------------------------------------------------------------- /pycapt/basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycapt/basic/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/basic/appstore.png -------------------------------------------------------------------------------- /pycapt/basic/reset_file_type.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycapt/basic/resize_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/basic/resize_img.py -------------------------------------------------------------------------------- /pycapt/basic/resized_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/basic/resized_image.png -------------------------------------------------------------------------------- /pycapt/logo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/logo/.gitignore -------------------------------------------------------------------------------- /pycapt/logo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycapt/logo/android_logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/logo/android_logo.py -------------------------------------------------------------------------------- /pycapt/logo/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/logo/appstore.png -------------------------------------------------------------------------------- /pycapt/logo/ios_logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/logo/ios_logo.py -------------------------------------------------------------------------------- /pycapt/make_captcha/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/make_captcha/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /pycapt/make_captcha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycapt/make_captcha/easy_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/make_captcha/easy_mode.py -------------------------------------------------------------------------------- /pycapt/make_captcha/make_capt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/make_captcha/make_capt.py -------------------------------------------------------------------------------- /pycapt/make_captcha/my_any_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/make_captcha/my_any_img.py -------------------------------------------------------------------------------- /pycapt/make_captcha/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/make_captcha/noise.py -------------------------------------------------------------------------------- /pycapt/solve_it/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/solve_it/1.png -------------------------------------------------------------------------------- /pycapt/solve_it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycapt/solve_it/cut_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/solve_it/cut_img.py -------------------------------------------------------------------------------- /pycapt/solve_it/de_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/solve_it/de_line.py -------------------------------------------------------------------------------- /pycapt/solve_it/de_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/solve_it/de_point.py -------------------------------------------------------------------------------- /pycapt/solve_it/easy_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/pycapt/solve_it/easy_solve.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/test_train_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/tests/test_train_img.py -------------------------------------------------------------------------------- /update_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutmydreams/pycapt/HEAD/update_version.py --------------------------------------------------------------------------------