alpha_mann
New Contributor II

I have just found a way😁

Try to creating an SSL context without certificate verification and then to accomplish this, use the command given below:

import ssl
context = ssl._create_unverified_context()
urllib.request.urlopen(req,context=context)

I have tried some steps from here