Skip to content
Advertisement

aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host stackoverflow.com:443 ssl:default [Connect call failed (‘151.101.193.69’, 443)]

here is my code:

JavaScript

if I run it on my computer, everything works, but if I run it on pythonanywhere, I get this error:

JavaScript

aiohttp on hosting:

JavaScript

aiohttp on my PC:

JavaScript

I am at a loss that it is not so? I am running both files using python3.8.

I also tried other urls, they have the same problem

Do I need to add any more details?

Advertisement

Answer

first solution

Referring to the help from the forum, I added trust_env = True when creating the client and now everything works.

Explanation: Free accounts on PythonAnywhere must use a proxy to connect to the public internet, but aiohttp, by default, does not connect to a proxy accessible from an environment variable.

Link to aiohttp documentation (look for a parameter called “trust_env”)

Here is the new code:

JavaScript

solution if the first didn’t help you

The domain you are trying to access must be in whitelist, otherwise you may also get this error.

In this case you need to post a new topic on the pythonanywhere forum asking to add the domain to the whitelist.
If this is an api, then you will need to provide a link to the documentation for this api.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement