Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
ssl.SSLError: unknown error (_ssl.c:638) #5359
Comments
|
I haven't tested it in windows yet. A similar issue has also been reported in the cpython bugtracker, could you try running the test script they posted? |
|
Sure, here's the output:
|
|
Thanks, could you try the following script? import ssl
# Load default certificates
context = ssl.create_default_context(ssl.Purpose.SERVER_AUTH)
context.load_default_certs()
stats = context.cert_store_stats()
print('Stats:', stats)
ca_certs = context.get_ca_certs()
print('{} CA Certificates loaded:'.format(len(ca_certs)))
for cert_dict in ca_certs:
print(cert_dict['subject'])
print()With the previous version, could YouTube videos be downloaded? |
I'm not sure which version I was using previously. It was from the second half of march and it downloaded YouTube videos just fine. |
|
It will work again in the next version, I have removed that check because of #5364. |
Everything worked properly until I updated youtube-dl to 2015.04.03 with pip install --upgrade youtube-dl. This happens everytime I try to download something.