Через cloudscraper делаю, через Aiohttp другая ошибка была import cloudscraper proxy = "http://" proxies = { "http": proxy, } scraper = cloudscraper.create_scraper() scraper.proxies = proxies url = "http://playerok.com" response = scraper.get(url) print(response.status_code) print(response.text) Python import cloudscraper proxy = "http://" proxies = { "http": proxy, } scraper = cloudscraper.create_scraper() scraper.proxies = proxies url = "http://playerok.com" response = scraper.get(url) print(response.status_code) print(response.text)