Answer the question
In order to leave comments, you need to log in
Why is the site blocking connections via aiohttp?
I am rewriting the requests parser on aiohttp.
And aiohttp with the same data began to give me a captcha. Requests continues to produce the desired result without captcha.
response = requests.post(url,
headers=headers,
proxies=proxies,
cookies=cookies,
data=data
)
async with aiohttp.ClientSession() as session:
resp = await session.post(
url,
headers=headers,
proxy=proxy,
cookies=cookies,
data=data
)
Answer the question
In order to leave comments, you need to log in
You probably have sequential requests with request, but competitive requests with aiohttp.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question