feedparser对象没有属性' etag'并且'修改了'

时间:2017-09-19 06:48:53

标签: python feedparser

我正在尝试从feedparser documentation

运行示例

到目前为止我尝试了什么

import feedparser
d = feedparser.parse('http://feedparser.org/docs/examples/atom10.xml')
print d.etag

我收到 etag

的错误
  

AttributeError:对象没有属性' etag'

我也试过

print d.modified

相同错误

  

AttributeError:对象没有属性' modified'

print d

给了我这个

{'feed': {'summary': u''}, 'status': 302, 'version': u'', 'encoding': u'utf-8', 'bozo': 1, 'headers': {'content-length': '333', 'content-encoding': 'gzip', 'age': '1', 'expires': '-1', 'vary': 'Accept-Encoding', 'server': 'Microsoft-IIS/7.5', 'connection': 'close', 'pragma': 'no-cache', 'cache-control': 'no-cache', 'date': 'Tue, 19 Sep 2017 06:39:58 GMT', 'x-powered-by': 'ASP.NET', 'content-type': 'text/html; charset=utf-8', 'x-aspnet-version': '4.0.30319'}, 'href': u'http://feedparser.org/docs/examples/atom10.xml', 'namespaces': {}, 'entries': [], 'bozo_exception': SAXParseException('no element found',)}

此处没有 etag 已修改键。我错过了什么?

0 个答案:

没有答案