0

Google アプリ エンジン アプリケーションがあり、feedparser を使用してフィードのコメントにアクセスしようとしています。Googleブロガーの例からのフィードでテストしています

<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns='http://www.w3.org/2005/Atom'
   xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/'
   xmlns:gd='http://schemas.google.com/g/2005'
   gd:etag='W/"CUYMQ348fyp7ImA9WB9UFkU."'>
  <id>tag:blogger.com,1999:blog-blogID.postpostID..comments</id>
  <updated>2007-12-14T17:46:22.077-08:00</updated>
  <title>Comments on Lizzy's Diary: Quite disagreeable</title>
  <entry gd:etag='W/"CUYCQX47eSp7ImA9WB9UFkU."'>
     <id>tag:blogger.com,1999:blog-blogID.post-commentID</id>
     <published>2007-12-14T17:46:00.001-08:00</published>
     <thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' 
        href='http://blogName.blogspot.com/2007/12/quite-disagreeable_5283.html'
        ref='tag:blogger.com,1999:blog-blogID.post-postID'
        source='http://www.blogger.com/feeds/blogID/posts/default/postID'
        type='text/html' />
  </entry>

現在、私のコードは

d= feedparser.parse(feedurl)
for child in d.entries:
   _url = child.thr_in-reply-to.href

エラーメッセージが表示されます

raise AttributeError, &quot;object has no attribute '%s'&quot; % key
AttributeError: object has no attribute 'thr_in'

コメントとその属性にアクセスするにはどうすればよいですか?

ありがとう

4

1 に答える 1

1

ドット表記、つまりchild.thr_in-reply-to.hrefは他の名前空間では機能しないようです。に変更したところ

child['thr_in-reply-to']['href']

出来た。

ただし、ドット表記は引き続きアトム名前空間で機能します。つまり、エントリの ID にアクセスするには、まだ実行できます。

child.id
于 2012-05-21T14:33:12.743 に答える