We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to open an MPD file from an HTTPS link, urlopen throws the following error:
urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1007)> parse.py:16
urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1007)>
I would suggest the following changes in parse.py:
def parse(cls, string_or_url) -> **def parse(cls, string_or_url, verifiySSL=false):** def load_xmldom(cls, string_or_url) -> def load_xmldom(cls, string_or_url, verifiySSL) ... mpd_string = urlopen(string_or_url).read() -> requests.get(string_or_url, verify=verifiySSL) ....
The text was updated successfully, but these errors were encountered:
not verifying SSL is bad practice. Make your self-signed certificated trusted.
Sorry, something went wrong.
No branches or pull requests
When I try to open an MPD file from an HTTPS link, urlopen throws the following error:
urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1007)>
parse.py:16
I would suggest the following changes in parse.py:
The text was updated successfully, but these errors were encountered: