Python httplib2, AttributeError: 'set' object has no attribute 'items'

江枫思渺然 提交于 2019-12-05 06:47:32

headers should be a dictionary, not a set:

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

Note the colon instead of the comma.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!