I am trying to connect to a login page(https page) using requests. My code:
import requests
requests.get('https page')
This still returns:
SSLError: [Errno 1] _ssl.c:504: error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error
I set verify=False
but it still returns the same error.