I'm running a python program on pythonanywhere.com.
So far I used requests.get() for my API calls.
However I'd now like to use aiohttp to improve performance and make concurrent API calls.
My problem is that, in pythonanywhere, requests() is configured in such a way to use a proxy, which has a whitelist (this is not a problem as my API server is in the whitelist).
However aiohttp uses direct web socket connection, and the proxy is then not set, resulting in a connect error.
How can I use aiohttp on pythonanywhere with a free account and configure the aiohttp proxy in the same way requests seems to be configured ?
Thanks