When finding strictly HTTP proxies, it appears to return proxies that are incompatible with aiohttp which are strictly only able to use http proxies. This generates the following error with aiohttp ValueError: Only http proxies are supported
Issue was wrong ussage of aiohttp proxy. When using an IP address for aiohttp proxy, the protocol is required for the proxy string definition. I.E: session.get(url, proxy='http://192.168.0.64:8080')
When finding strictly HTTP proxies, it appears to return proxies that are incompatible with aiohttp which are strictly only able to use http proxies. This generates the following error with aiohttp
ValueError: Only http proxies are supported