ssl.SSLError:[SSL:TLSV1_ALERT_PROTOCOL_VERSION] tlsv1警报协议版本(_ssl.c:598)在OSX上访问https站点时

时间:2018-08-04 13:47:42

标签: python python-3.x openssl pycharm osx-yosemite

我已经在这个问题上搜索了整整一天,但找不到适合我的任何东西。我收到错误

`ssl.SSLError: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:598)`

尝试访问https网站时。这是我在https://www.apartments.com/westhampton-court-apartment-homes-atlanta-ga/sqpw607/上遇到错误的特定站点,目前我已经在此问题上停留了一天多,请提供帮助。

预期结果 我希望从URL获取数据,而不是收到错误。

实际结果 我收到上面指定的错误。

复制步骤 尝试访问任何https网站。我尝试了包括urllib在内的其他库,它也给了我同样的错误。经过一天的搜查,我确信这是OSX的问题。

requests.get(url)

系统信息: 我在OSX优胜美地10.10.5(14F2511)上

python --version: 

Python 3.7.0

python --version: 

Python 3.4.1(在PyCharm平台上运行)

import ssl; pprint(ssl.OPENSSL_VERSION): 

“ OpenSSL 0.9.8zg 2015年7月14日”(从我的脚本运行)

openssl version -a:

OpenSSL 1.0.2o 27 Mar 2018
built on: reproducible build, date unspecified
platform: darwin64-x86_64-cc
options: bn(64,64) rc4(ptr,int) des(idx,cisc,16,int) idea(int) blowfish(idx)
compiler: clang -I. -I.. -I../include -fPIC -fno-common -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -arch x86_64 -O3 -DL_ENDIAN -Wall -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM -DECP_NISTZ256_ASM
OPENSSLDIR: "/usr/local/etc/openssl"

nano .bash_profile:

PATH="/Library/Frameworks/Python.framework/Versions/3.4/bin:${PATH}"
export PATH

export PATH="/opt/local/bin:/opt/local/sbin:$PATH"

export PATH="/usr/local/bin:$PATH"
export PATH="/usr/local/opt/openssl/bin:$PATH"
export PATH="/usr/local/opt/python/libexec/bin:$PATH"

0 个答案:

没有答案