Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This seems to be an issue with openssl which is what Python's <code>ssl</code> module relies on (and which in turn <code>requests</code> relies on). The way to verify this is by using the openssl <code>s_client</code> command to check this:</p> <pre><code>~/sandbox/requests (master) openssl s_client -connect klevas.vu.lt:443 CONNECTED(00000003) 140721982121664:error:140773E8:SSL routines:SSL23_GET_SERVER_HELLO:reason(1000):s23_clnt.c:741: --- no peer certificate available --- No client certificate CA names sent --- SSL handshake has read 7 bytes and written 319 bytes --- New, (NONE), Cipher is (NONE) Secure Renegotiation IS NOT supported Compression: NONE Expansion: NONE --- </code></pre> <p>That's the same error I see when testing this on python 2.7.</p> <p>Furthermore, if I test the second url <code>www.kleavs.vu.lt</code> I get this:</p> <pre><code>~/sandbox/requests (master) openssl s_client -connect www.klevas.vu.lt:443 connect: Connection refused connect:errno=111 </code></pre> <p>Which is the same thing I see when I try to request the second URL via requests on either Python 2 or 3.</p> <p>This is not an issue with requests but similar bugs have been filed: <a href="https://github.com/kennethreitz/requests/issues/606" rel="nofollow">#606</a> (which is where I pulled the openssl command).</p> <p>You can attempt to follow the instructions <a href="https://lukasa.co.uk/2013/01/Choosing_SSL_Version_In_Requests/" rel="nofollow">here</a> to determine if a different version of TLS or SSL will fix this for you, but I'm not sure it will help in this case.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload