urllib2 标头错误:TypeError:sendall() 参数 1 必须是字符串或缓冲区,而不是字典

发布于 2024-12-08 21:25:45 字数 485 浏览 0 评论 0原文

def download(url):
    print url
    user_agent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11'
    headers = {'User-Agent' : user_agent }    
    request = urllib2.Request(url, headers)
    response = urllib2.urlopen(request)
    return response

我在这里做错了什么?我正在使用文档中的确切示例:

http://docs.python.org/如何/urllib2.html#headers

def download(url):
    print url
    user_agent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11'
    headers = {'User-Agent' : user_agent }    
    request = urllib2.Request(url, headers)
    response = urllib2.urlopen(request)
    return response

What am I doing wrong here? I'm using the exact example from the docs:

http://docs.python.org/howto/urllib2.html#headers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

零度℉ 2024-12-15 21:25:46

您没有使用确切的示例。该示例有:

req = urllib2.Request(url, data, headers)

当您有:

request = urllib2.Request(url, headers)

因为这些是位置参数,所以保持它们的正确性很重要。第二个参数是一个数据字符串,您需要提供:

request = urllib2.Request(url, "", headers)

You aren't using the exact example. The example has:

req = urllib2.Request(url, data, headers)

while you have:

request = urllib2.Request(url, headers)

Because these are positional arguments, it's important that you keep them straight. The second argument is a string of data, you need to supply that:

request = urllib2.Request(url, "", headers)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文