Вот код:
from aiocfscrape import CloudflareScraper
import asyncio
url = 'https://playerok.com/'
async def test_open_page(url):
async with CloudflareScraper() as session:
async with session.get(url) as resp:
return await resp.text()
if __name__ == '__main__':
print(asyncio.run(test_open_page(url)))
Ожидаемое поведение: получение html кода главной страницы сайта
Действительное: cloudflare пишет что я заблокирован (Sorry, you have been blocked) и просит включить cookie (Please enable cookies.).
Как это можно исправить/обойти так что бы всё-таки получить исходный код страницы?