无法在 python 中获取 url

Unable to fetch url in python

我无法从 biblegateway.com 中获取 url,这里显示错误 urllib2.URLError: <urlopen error [Errno 1] _ssl.c:510: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure> 请不要复制,因为我浏览了重复显示的网站,我访问该网站时不明白。

这是我的代码

import urllib2
url = 'https://www.biblegateway.com/passage/?search=Deuteronomy+1&version=NIV'
response = urllib2.urlopen(url)
html = response.read()
print html

这里是 fetching url 的一个很好的参考。

在python3你可以有:

from urllib.request import urlopen
URL = 'https://www.biblegateway.com/passage/?search=Deuteronomy+1&version=NIV'
f = urlopen(URL)
myfile = f.read()
print(myfile)

虽然不确定它是否清除了 ssl 问题。也许有些线索 .