I have a large number of file download links in a txt file. I am trying to write a python script to download all the files at once, but I end up wi
Normally updating certifi and/or the certifi cacert.pem file would work. I also had to update my version of python. Vs. 2.7.5 wasn't working because of how it handles SNI requests.
Once you have an up to date pem file you can make your http request using:
requests.get(url, verify='/path/to/cacert.pem')