gpt4 book ai didi

python - urllib.py 不适用于 https?

转载 作者:太空狗 更新时间:2023-10-30 02:00:25 25 4
gpt4 key购买 nike

在我的 python 应用程序中,我尝试打开一个 https url,但我得到:

 File "C:\Python26\lib\urllib.py", line 215, in open_unknown
raise IOError, ('url error', 'unknown url type', type)
IOError: [Errno url error] unknown url type: 'https'

我的代码:

import urllib
def generate_embedded_doc(doc_id):
url = "https://docs.google.com/document/ub?id=" + doc_id + "&embedded=true"
src = urllib.urlopen(url).read()
...
return src

最佳答案

要获得 SSL 支持,您需要使用 OpenSSL 编译 Python .例如,在 ubuntu lucid 下,您必须安装模块 libcurl4-openssl-dev,然后重新构建 Python。

关于python - urllib.py 不适用于 https?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3747037/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com