python requests https报错解决

用python requests库去下载https的m3u8视频资源时出现报错

file_url = os.path.split(url)[0] + "/" + file_list[i]
            save_path = item_path + "/" + file_list[i]
            file_res = requests.get(file_url, proxies=proxies)
            if file_res.status_code == 200:
                with open(save_path, "wb") as file1:
                    file1.write(file_res.content)
requests.exceptions.SSLError: HTTPSConnectionPool(host='godsold.com', port=443): Max retries exceeded with url: .............ts (Caused by SSLError(SSLError("bad handshake: SysCallError(10053, 'WSAECONNABORTED')")))

试过网上那些verify=false还是出现这种情况。有谁遇到过这种情况的能给解答一下吗?

把url打印一下,看看对不对?