├── .gitignore ├── README.md ├── docs ├── .gitignore ├── README.md ├── en │ ├── Makefile │ ├── build │ │ └── html │ │ │ ├── .buildinfo │ │ │ ├── _sources │ │ │ ├── contributing.md.txt │ │ │ ├── docker.md.txt │ │ │ ├── index.rst.txt │ │ │ ├── installation.md.txt │ │ │ ├── introduction.md.txt │ │ │ ├── license.md.txt │ │ │ ├── maintainers.md.txt │ │ │ └── usage.md.txt │ │ │ ├── _static │ │ │ ├── basic.css │ │ │ ├── css │ │ │ │ ├── badge_only.css │ │ │ │ ├── fonts │ │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ │ ├── lato-bold.woff │ │ │ │ │ ├── lato-bold.woff2 │ │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ │ ├── lato-normal.woff │ │ │ │ │ └── lato-normal.woff2 │ │ │ │ └── theme.css │ │ │ ├── doctools.js │ │ │ ├── documentation_options.js │ │ │ ├── file.png │ │ │ ├── fonts │ │ │ │ ├── Inconsolata-Bold.ttf │ │ │ │ ├── Inconsolata-Regular.ttf │ │ │ │ ├── Inconsolata.ttf │ │ │ │ ├── Lato-Bold.ttf │ │ │ │ ├── Lato-Regular.ttf │ │ │ │ ├── Lato │ │ │ │ │ ├── lato-bold.eot │ │ │ │ │ ├── lato-bold.ttf │ │ │ │ │ ├── lato-bold.woff │ │ │ │ │ ├── lato-bold.woff2 │ │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ │ ├── lato-italic.eot │ │ │ │ │ ├── lato-italic.ttf │ │ │ │ │ ├── lato-italic.woff │ │ │ │ │ ├── lato-italic.woff2 │ │ │ │ │ ├── lato-regular.eot │ │ │ │ │ ├── lato-regular.ttf │ │ │ │ │ ├── lato-regular.woff │ │ │ │ │ └── lato-regular.woff2 │ │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ │ ├── RobotoSlab │ │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── jquery-3.4.1.js │ │ │ ├── jquery-3.5.1.js │ │ │ ├── jquery.js │ │ │ ├── js │ │ │ │ ├── badge_only.js │ │ │ │ ├── html5shiv-printshiv.min.js │ │ │ │ ├── html5shiv.min.js │ │ │ │ ├── modernizr.min.js │ │ │ │ └── theme.js │ │ │ ├── language_data.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── translations.js │ │ │ ├── underscore-1.12.0.js │ │ │ ├── underscore-1.3.1.js │ │ │ └── underscore.js │ │ │ ├── contributing.html │ │ │ ├── docker.html │ │ │ ├── genindex.html │ │ │ ├── index.html │ │ │ ├── installation.html │ │ │ ├── introduction.html │ │ │ ├── license.html │ │ │ ├── maintainers.html │ │ │ ├── objects.inv │ │ │ ├── search.html │ │ │ ├── searchindex.js │ │ │ └── usage.html │ ├── make.bat │ └── source │ │ ├── conf.py │ │ ├── index.rst │ │ ├── installation.md │ │ ├── introduction.md │ │ ├── license.md │ │ ├── maintainers.md │ │ └── usage.md ├── requirements.txt └── zh_cn │ ├── Makefile │ ├── build │ ├── doctrees │ │ ├── contributing.doctree │ │ ├── docker.doctree │ │ ├── environment.pickle │ │ ├── index.doctree │ │ ├── installation.doctree │ │ ├── introduction.doctree │ │ ├── license.doctree │ │ ├── maintainers.doctree │ │ └── usage.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ ├── contributing.md.txt │ │ ├── docker.md.txt │ │ ├── index.rst.txt │ │ ├── installation.md.txt │ │ ├── introduction.md.txt │ │ ├── license.md.txt │ │ ├── maintainers.md.txt │ │ └── usage.md.txt │ │ ├── _static │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── fonts │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── fonts │ │ │ ├── Inconsolata-Bold.ttf │ │ │ ├── Inconsolata-Regular.ttf │ │ │ ├── Inconsolata.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── Lato │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-italic.woff2 │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.ttf │ │ │ │ ├── lato-regular.woff │ │ │ │ └── lato-regular.woff2 │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ ├── RobotoSlab │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── jquery-3.4.1.js │ │ ├── jquery-3.5.1.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── badge_only.js │ │ │ ├── html5shiv-printshiv.min.js │ │ │ ├── html5shiv.min.js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── translations.js │ │ ├── underscore-1.12.0.js │ │ ├── underscore-1.3.1.js │ │ └── underscore.js │ │ ├── contributing.html │ │ ├── docker.html │ │ ├── genindex.html │ │ ├── index.html │ │ ├── installation.html │ │ ├── introduction.html │ │ ├── license.html │ │ ├── maintainers.html │ │ ├── objects.inv │ │ ├── search.html │ │ ├── searchindex.js │ │ └── usage.html │ ├── make.bat │ └── source │ ├── conf.py │ ├── index.rst │ ├── installation.md │ ├── introduction.md │ ├── license.md │ ├── maintainers.md │ └── usage.md ├── examples ├── .gitignore ├── example_image_to_text.py ├── example_no_captcha_task_proxyless.py ├── example_region.py ├── example_soft_id.py ├── images │ └── image_to_text1.png └── utils.py ├── requirements.txt ├── setup.py └── yescaptcha ├── __init__.py ├── __version__.py ├── client.py ├── exceptions.py ├── job.py ├── settings.py └── task ├── __init__.py ├── base.py ├── hcaptcha_classification.py ├── hcaptcha_task_proxyless.py ├── image_to_text_task.py ├── no_captcha_task_proxyless.py ├── re_captcha_v2_classification.py ├── recaptcha_v2_enterprise_task_proxyless.py ├── recaptcha_v3_enterprise_task.py └── recaptcha_v3_task_proxyless.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/Makefile -------------------------------------------------------------------------------- /docs/en/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/.buildinfo -------------------------------------------------------------------------------- /docs/en/build/html/_sources/contributing.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_sources/contributing.md.txt -------------------------------------------------------------------------------- /docs/en/build/html/_sources/docker.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_sources/docker.md.txt -------------------------------------------------------------------------------- /docs/en/build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/en/build/html/_sources/installation.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_sources/installation.md.txt -------------------------------------------------------------------------------- /docs/en/build/html/_sources/introduction.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_sources/introduction.md.txt -------------------------------------------------------------------------------- /docs/en/build/html/_sources/license.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_sources/license.md.txt -------------------------------------------------------------------------------- /docs/en/build/html/_sources/maintainers.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_sources/maintainers.md.txt -------------------------------------------------------------------------------- /docs/en/build/html/_sources/usage.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_sources/usage.md.txt -------------------------------------------------------------------------------- /docs/en/build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/en/build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/file.png -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/en/build/html/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/en/build/html/_static/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/jquery-3.4.1.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/en/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/en/build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/en/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/translations.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/underscore-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/underscore-1.12.0.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/en/build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/en/build/html/contributing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/contributing.html -------------------------------------------------------------------------------- /docs/en/build/html/docker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/docker.html -------------------------------------------------------------------------------- /docs/en/build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/genindex.html -------------------------------------------------------------------------------- /docs/en/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/index.html -------------------------------------------------------------------------------- /docs/en/build/html/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/installation.html -------------------------------------------------------------------------------- /docs/en/build/html/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/introduction.html -------------------------------------------------------------------------------- /docs/en/build/html/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/license.html -------------------------------------------------------------------------------- /docs/en/build/html/maintainers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/maintainers.html -------------------------------------------------------------------------------- /docs/en/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/objects.inv -------------------------------------------------------------------------------- /docs/en/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/search.html -------------------------------------------------------------------------------- /docs/en/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/searchindex.js -------------------------------------------------------------------------------- /docs/en/build/html/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/build/html/usage.html -------------------------------------------------------------------------------- /docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/make.bat -------------------------------------------------------------------------------- /docs/en/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/source/conf.py -------------------------------------------------------------------------------- /docs/en/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/source/index.rst -------------------------------------------------------------------------------- /docs/en/source/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/source/installation.md -------------------------------------------------------------------------------- /docs/en/source/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/source/introduction.md -------------------------------------------------------------------------------- /docs/en/source/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/source/license.md -------------------------------------------------------------------------------- /docs/en/source/maintainers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/source/maintainers.md -------------------------------------------------------------------------------- /docs/en/source/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/en/source/usage.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/zh_cn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/Makefile -------------------------------------------------------------------------------- /docs/zh_cn/build/doctrees/contributing.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/doctrees/contributing.doctree -------------------------------------------------------------------------------- /docs/zh_cn/build/doctrees/docker.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/doctrees/docker.doctree -------------------------------------------------------------------------------- /docs/zh_cn/build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/zh_cn/build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/zh_cn/build/doctrees/installation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/doctrees/installation.doctree -------------------------------------------------------------------------------- /docs/zh_cn/build/doctrees/introduction.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/doctrees/introduction.doctree -------------------------------------------------------------------------------- /docs/zh_cn/build/doctrees/license.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/doctrees/license.doctree -------------------------------------------------------------------------------- /docs/zh_cn/build/doctrees/maintainers.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/doctrees/maintainers.doctree -------------------------------------------------------------------------------- /docs/zh_cn/build/doctrees/usage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/doctrees/usage.doctree -------------------------------------------------------------------------------- /docs/zh_cn/build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/.buildinfo -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_sources/contributing.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_sources/contributing.md.txt -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_sources/docker.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_sources/docker.md.txt -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_sources/installation.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_sources/installation.md.txt -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_sources/introduction.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_sources/introduction.md.txt -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_sources/license.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_sources/license.md.txt -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_sources/maintainers.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_sources/maintainers.md.txt -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_sources/usage.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_sources/usage.md.txt -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/file.png -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/jquery-3.4.1.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/translations.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/underscore-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/underscore-1.12.0.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/contributing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/contributing.html -------------------------------------------------------------------------------- /docs/zh_cn/build/html/docker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/docker.html -------------------------------------------------------------------------------- /docs/zh_cn/build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/genindex.html -------------------------------------------------------------------------------- /docs/zh_cn/build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/index.html -------------------------------------------------------------------------------- /docs/zh_cn/build/html/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/installation.html -------------------------------------------------------------------------------- /docs/zh_cn/build/html/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/introduction.html -------------------------------------------------------------------------------- /docs/zh_cn/build/html/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/license.html -------------------------------------------------------------------------------- /docs/zh_cn/build/html/maintainers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/maintainers.html -------------------------------------------------------------------------------- /docs/zh_cn/build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/objects.inv -------------------------------------------------------------------------------- /docs/zh_cn/build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/search.html -------------------------------------------------------------------------------- /docs/zh_cn/build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/searchindex.js -------------------------------------------------------------------------------- /docs/zh_cn/build/html/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/build/html/usage.html -------------------------------------------------------------------------------- /docs/zh_cn/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/make.bat -------------------------------------------------------------------------------- /docs/zh_cn/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/source/conf.py -------------------------------------------------------------------------------- /docs/zh_cn/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/source/index.rst -------------------------------------------------------------------------------- /docs/zh_cn/source/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/source/installation.md -------------------------------------------------------------------------------- /docs/zh_cn/source/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/source/introduction.md -------------------------------------------------------------------------------- /docs/zh_cn/source/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/source/license.md -------------------------------------------------------------------------------- /docs/zh_cn/source/maintainers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/source/maintainers.md -------------------------------------------------------------------------------- /docs/zh_cn/source/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/docs/zh_cn/source/usage.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/example_image_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/examples/example_image_to_text.py -------------------------------------------------------------------------------- /examples/example_no_captcha_task_proxyless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/examples/example_no_captcha_task_proxyless.py -------------------------------------------------------------------------------- /examples/example_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/examples/example_region.py -------------------------------------------------------------------------------- /examples/example_soft_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/examples/example_soft_id.py -------------------------------------------------------------------------------- /examples/images/image_to_text1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/examples/images/image_to_text1.png -------------------------------------------------------------------------------- /examples/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/examples/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | loguru -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/setup.py -------------------------------------------------------------------------------- /yescaptcha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yescaptcha/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/__version__.py -------------------------------------------------------------------------------- /yescaptcha/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/client.py -------------------------------------------------------------------------------- /yescaptcha/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/exceptions.py -------------------------------------------------------------------------------- /yescaptcha/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/job.py -------------------------------------------------------------------------------- /yescaptcha/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/settings.py -------------------------------------------------------------------------------- /yescaptcha/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/task/__init__.py -------------------------------------------------------------------------------- /yescaptcha/task/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/task/base.py -------------------------------------------------------------------------------- /yescaptcha/task/hcaptcha_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/task/hcaptcha_classification.py -------------------------------------------------------------------------------- /yescaptcha/task/hcaptcha_task_proxyless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/task/hcaptcha_task_proxyless.py -------------------------------------------------------------------------------- /yescaptcha/task/image_to_text_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/task/image_to_text_task.py -------------------------------------------------------------------------------- /yescaptcha/task/no_captcha_task_proxyless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/task/no_captcha_task_proxyless.py -------------------------------------------------------------------------------- /yescaptcha/task/re_captcha_v2_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/task/re_captcha_v2_classification.py -------------------------------------------------------------------------------- /yescaptcha/task/recaptcha_v2_enterprise_task_proxyless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/task/recaptcha_v2_enterprise_task_proxyless.py -------------------------------------------------------------------------------- /yescaptcha/task/recaptcha_v3_enterprise_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/task/recaptcha_v3_enterprise_task.py -------------------------------------------------------------------------------- /yescaptcha/task/recaptcha_v3_task_proxyless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yescaptcha/yescaptcha-python/HEAD/yescaptcha/task/recaptcha_v3_task_proxyless.py --------------------------------------------------------------------------------