0
我遇到了一個問題,它抓取了我抓取的一些博客訂閱源中的內容。關於通用訂閱解析器的問題
我不確定是什麼原因,但是通過解析一個或兩個博客與feedparser返回我此特定錯誤:
results = feedparser.parse(url)
ent = []
for entry in results.entries:
e = {}
e['title'] = entry.title
e['content'] = entry.content[0].value
object has no attribute 'content'
或
object has no attribute 'link'
這不是招」我的其他博客的情況就是如此。空的條目內容是否會導致這種情況?
快速提問。各種blogspot博客使用的自定義腳本模板會改變內容的結構。查看代碼後,幾個博客的內容位於「摘要」字段內,而不是「內容」字段 – goh 2010-06-23 08:10:09
我快速瀏覽了Blogspot,並且無法看到編輯Feed的模板的方法。我看過的博客在RSS中的Atom feed和description中使用了'content'。你有一對夫婦的網址,你看着有差異嗎? – mikej 2010-06-23 19:12:05