Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2025 09:20 PM
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