Python httplib2,AttributeError:"set"对象没有属性"items" [英] Python httplib2, AttributeError: 'set' object has no attribute 'items'

查看:224
本文介绍了Python httplib2,AttributeError:"set"对象没有属性"items"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Python库 httplib2 .以下是我的代码.

I'm playing with the Python library httplib2. The following is my code.

import urllib.parse
import httplib2

httplib2.debuglevel = 1

http = httplib2.Http()

url = "http://login.sina.com.cn/hd/signin.php"
body = {"act": "1",
        "entry": "vblog",
        "password": "P@$sW0rd",
        "reference": "http://vupload.you.video.sina.com.cn/u.php?m=1&cate=0",
        "reg_entry": "vblog",
        "remLoginName": "on",
        "username": "this_is_user_name",
        "x": "",
        "y": ""}

headers = {"Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
           "Accept-Charset", "ISO-8859-1,utf-8;q=0.7,*;q=0.7",
           "Accept-Encoding", "gzip,deflate",
           "Accept-Language", "en-us,en;q=0.5",
           "Connection", "keep-alive",
           "Content-Length", "181",
           "Content-Type", "application/x-www-form-urlencoded",
           "Host", "login.sina.com.cn",
           "Keep-Alive", "115",
           "Referer", "http://login.sina.com.cn/hd/signin.php?entry=vblog&r=http%3A%2F%2Fvupload.you.video.sina.com.cn%2Fu.php%3Fm%3D1%26cate%3D0",
           "User-Agent", "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.16) Gecko/20110319 Firefox/3.6.16"}

response, content = http.request(url, 'POST', headers=headers, body=urllib.parse.urlencode(body))

执行它时,出现错误:

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\>python --version
Python 3.2

C:\>python a.py
Traceback (most recent call last):
  File "a.py", line 32, in <module>
    response, content = http.request(url, 'POST', urllib.parse.urlencode(body), headers=headers)
  File "C:\Python32\lib\site-packages\httplib2\__init__.py", line 961, in request
    headers = _normalize_headers(headers)
  File "C:\Python32\lib\site-packages\httplib2\__init__.py", line 184, in _normalize_headers
    return dict([ (key.lower(), NORMALIZE_SPACE.sub(value, ' ').strip())  for (key, value) in headers.items()])
AttributeError: 'set' object has no attribute 'items'

C:\>

我对Python和httplib2还是很陌生,我的代码有什么问题吗?

I'm pretty new to Python and httplib2, anything wrong in my code?

谢谢.

推荐答案

headers应该是字典,而不是集合:

headers should be a dictionary, not a set:

headers = {"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
           ...}

注意冒号而不是逗号.

这篇关于Python httplib2,AttributeError:"set"对象没有属性"items"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆