I\'m having this SSL issue with feedparser parsing an HTTPS RSS feed, I don\'t really know what to do as I can\'t find any documentation on this error when it c
Thanks you cmidi for the answer, which was to 'monkey patch' using ssl._create_default_https_context = ssl._create_unverified_context
import feedparser
import ssl
if hasattr(ssl, '_create_unverified_context'):
ssl._create_default_https_context = ssl._create_unverified_context
feed = feedparser.parse(rss) #<