├── .gitattributes ├── .gitignore ├── README.md ├── RecaptchaSolver.py ├── pyproject.toml ├── requirements.txt └── test.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperavci/GoogleRecaptchaBypass/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperavci/GoogleRecaptchaBypass/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperavci/GoogleRecaptchaBypass/HEAD/README.md -------------------------------------------------------------------------------- /RecaptchaSolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperavci/GoogleRecaptchaBypass/HEAD/RecaptchaSolver.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperavci/GoogleRecaptchaBypass/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | DrissionPage 2 | pydub 3 | SpeechRecognition -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperavci/GoogleRecaptchaBypass/HEAD/test.py --------------------------------------------------------------------------------