Скопировал с сайта простенький скрипт, который должен обходить капчу.
Подстроил свои данные, пытаюсь оправить на сайт через request, но ничего не происходит
from python_anticaptcha import AnticaptchaClient, NoCaptchaTaskProxylessTask
import requests
api_key = 'KEY'
site_key = 'SITE_KEY' # grab from site
url = 'https://www.google.com/recaptcha/api2/demo'
client = AnticaptchaClient(api_key)
task = NoCaptchaTaskProxylessTask(url, site_key)
job = client.createTask(task)
print("Waiting to solution by Anticaptcha workers")
job.join()
response = job.get_solution_response()
print("Received solution", response)
r = requests.session()
token = job.get_solution_response()
r.post(url, data={'g-recaptcha-response': token}).text