gpt4 book ai didi

Python 3.3 HTTP Cookie 错误

转载 作者:可可西里 更新时间:2023-11-01 16:50:32 25 4
gpt4 key购买 nike

我刚刚(从源代码)全新安装了 Python 3.3,并安装了“请求”库。我正在尝试一个非常简单的请求:

r = requests.get('https://www.google.com/')

而且我得到一个非常奇怪的返回错误:

File "/usr/local/lib/python3.3/http/cookiejar.py", line 1647, in extract_cookies
if self._policy.set_ok(cookie, request):
File "/usr/local/lib/python3.3/http/cookiejar.py", line 931, in set_ok
if not fn(cookie, request):
File "/usr/local/lib/python3.3/http/cookiejar.py", line 952, in set_ok_verifiability
if request.unverifiable and is_third_party(request):
AttributeError: 'MockRequest' object has no attribute 'unverifiable'

鉴于我还是一个 Python 初学者,我完全不知道是什么导致了这个错误。有什么想法吗?

最佳答案

这适用于 python 3.2:

Python 3.2.3 (default, Apr 13 2012, 13:31:19) 
[GCC 4.2.1 Compatible Apple Clang 3.0 (tags/Apple/clang-211.12)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import requests
>>> r = requests.get('https://www.google.com/')

requests FAQ说明官方支持哪些 python 3 版本,而你刚刚发现在 python 3.3 上,requests 还(还)不起作用。

有一个patch available在问题跟踪器中,所以这只是时间问题。

更新:Version 0.14.1于 2012/10/01 发布,修复:

0.14.1 (2012-10-01)

  • Python 3.3 Compatibility
  • Simply default accept-encoding
  • Bugfixes

关于Python 3.3 HTTP Cookie 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12659833/

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