我仍然是一个蟒蛇初学者。作为一个练习项目,我想编写自己的RSS阅读器。 我在这里找到了一个有用的教程:learning python。我使用了该教程中提供的代码:
#! /usr/bin/env python
import urllib2
from xml.dom import minidom, Node
""" Get the XML """
url_info = urllib2.urlopen('http://rss.slashdot.org/Slashdot/slashdot')
if (url_info):
""" We have the RSS XML lets try to parse it up """
xmldoc = minidom.parse(url_info)
if (xmldoc):
"""We have the Doc, get the root node"""
rootNode = xmldoc.documentElement
""" Iterate the child nodes """
for node in rootNode.childNodes:
""" We only care about "item" entries"""
if (node.nodeName == "item"):
""" Now iterate through all of the <item>'s children """
for item_node in node.childNodes:
if (item_node.nodeName == "title"):
""" Loop through the title Text nodes to get
the actual title"""
title = ""
for text_node in item_node.childNodes:
if (text_node.nodeType == node.TEXT_NODE):
title += text_node.nodeValue
""" Now print the title if we have one """
if (len(title)>0):
print title
if (item_node.nodeName == "description"):
""" Loop through the description Text nodes to get
the actual description"""
description = ""
for text_node in item_node.childNodes:
if (text_node.nodeType == node.TEXT_NODE):
description += text_node.nodeValue
""" Now print the title if we have one.
Add a blank with \n so that it looks better """
if (len(description)>0):
print description + "\n"
else:
print "Error getting XML document!"
else:
print "Error! Getting URL"<code>
一切都按预期工作,首先我认为理解这一切。但是一旦我使用另一个RSS提要(例如“http://www.spiegel.de/schlagzeilen/tops/index.rss”)我从Eclipse IDE中获得了应用程序的“已终止”错误。无法说更多关于该错误消息,因为我无法确定应用程序终止的确切位置和原因。调试器没有多大帮助,因为它忽略了我的断点。嗯,这是另一个问题。
任何人都知道我做错了什么?
答案 0 :(得分:4)
好的“终止”消息不是错误,只是python已经退出而没有错误的信息。
你没有做错任何事,只是这个RSS阅读器不是很灵活,因为它只知道RSS的一种变体。
如果您比较slashdot和Spiegel Online的XML文档,您会发现文档结构存在差异:
Slashdot的:
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" ...>
<channel rdf:about="http://slashdot.org/">
<title>Slashdot</title>
<!-- more stuff (but no <item>-tags) -->
</channel>
<item rdf:about="blabla">
<title>The Condescending UI</title>
<!-- item data -->
</item>
<!-- more <item>-tags -->
</rdf:RDF>
Spiegel在线:
<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
<channel>
<title>SPIEGEL ONLINE - Schlagzeilen</title>
<link>http://www.spiegel.de</link>
<item>
<title>Streit über EU-Veto: Vize Clegg meutert gegen britischen Premier Cameron</title>
</item>
<!-- more <item>-tags -->
<channel>
</rss>
在Spiegel Online的Feed中,所有<item>
元素都在<channel>
- 标记中,但在slashdot Feed中,它们位于 root -tag({{1} })。而你的python代码只需要 root -tag中的项目。
如果您希望您的RSS阅读器适用于这两种Feed,您可以更改以下行:
<rdf:RDF>
对此:
for node in rootNode.childNodes:
枚举所有for node in rootNode.getElementsByTagName('item'):
- 标记,无论它们在XML文档中的位置如何。
答案 1 :(得分:0)
如果没有任何反应,也许你的代码中的一切都是正确的,你只是不匹配正确的元素:)
如果您有异常,请尝试从命令行启动:
python <yourfilename.py>
或者使用try / catch来捕获异常,并打印错误:
try:
# your code
catch Exception, e:
# print it
print 'My exception is', e