我正在尝试从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 或已修改键。我错过了什么?