├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── requirements.txt ├── selenium_recaptcha_solver ├── __init__.py ├── delay_config.py ├── exceptions.py ├── services.py └── solver.py ├── setup.py └── tests ├── __init__.py └── test_api.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/SECURITY.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/requirements.txt -------------------------------------------------------------------------------- /selenium_recaptcha_solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/selenium_recaptcha_solver/__init__.py -------------------------------------------------------------------------------- /selenium_recaptcha_solver/delay_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/selenium_recaptcha_solver/delay_config.py -------------------------------------------------------------------------------- /selenium_recaptcha_solver/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/selenium_recaptcha_solver/exceptions.py -------------------------------------------------------------------------------- /selenium_recaptcha_solver/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/selenium_recaptcha_solver/services.py -------------------------------------------------------------------------------- /selenium_recaptcha_solver/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/selenium_recaptcha_solver/solver.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRRT7/driverless-recaptcha-solver/HEAD/tests/test_api.py --------------------------------------------------------------------------------