Ssl: unsupported_protocal

I am trying to send the HTTPS request using requests module.

import requests
url = "https://ncc.net:20002/FISERVLET/fihttp/"
res=requests.get(url)

While executing above code, i am receiving the below error

raise SSLError(e, request=request)
requests.exceptions.SSLError: HTTPSConnectionPool(host='ncc.net', port=20002): Max retries exceeded with url: /fihttp/ (Caused by SSLError(SSLError(1, '[SSL: UNSUPPORTED_PROTOCOL] unsupported protocol (_ssl.c:997)')))

Below are the client server detail:
Server: Red HAT 6.5
Client : Windows Server 2016 Standard.
Python Version: 3.10.2