Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #38373 > unrolled thread
| Started by | darrel.rendell@gmail.com |
|---|---|
| First post | 2013-02-07 12:36 -0800 |
| Last post | 2013-02-07 21:10 -0800 |
| Articles | 3 — 3 participants |
Back to article view | Back to comp.lang.python
Parsing XML RSS feed byte stream for <item> tag darrel.rendell@gmail.com - 2013-02-07 12:36 -0800
Re: Parsing XML RSS feed byte stream for <item> tag John Gordon <gordon@panix.com> - 2013-02-07 21:00 +0000
Re: Parsing XML RSS feed byte stream for <item> tag xDog Walker <thudfoo@gmail.com> - 2013-02-07 21:10 -0800
| From | darrel.rendell@gmail.com |
|---|---|
| Date | 2013-02-07 12:36 -0800 |
| Subject | Parsing XML RSS feed byte stream for <item> tag |
| Message-ID | <16828a11-6c7c-4ab6-b406-6b8819883b5e@googlegroups.com> |
I'm attempting to parse an RSS feed for the first instance of an element "".
def pageReader(url):
try:
readPage = urllib2.urlopen(url)
except urllib2.URLError, e:
# print 'We failed to reach a server.'
# print 'Reason: ', e.reason
return 404
except urllib2.HTTPError, e:
# print('The server couldn\'t fulfill the request.')
# print('Error code: ', e.code)
return 404
else:
outputPage = readPage.read()
return outputPage
Assume arguments being passed are correct. The function returns a str object whose value is simply an entire rss feed - I've confirmed the type with:
a = isinstance(value, str)
if not a:
return -1
So, an entire rss feed has been returned from the function call, it's this point I hit a brick wall - I've tried parsing the feed with BeautifulSoup, lxml and various other libs, but no success (I had some success with BeautifulSoup, but it wasn't able to pull certain child elements from the parent, for example, . I'm just about ready to resort to writing my own parser, but I'd like to know if anybody has any suggestions.
To recreate my error, simply call the above function with an argument similar to:
http://www.cert.org/nav/cert_announcements.rss
You'll see I'm trying to return the first child.
<item>
<title>New Blog Entry: Common Sense Guide to Mitigating Insider Threats - Best Practice 16 (of 19)</title>
<link>http://www.cert.org/blogs/insider_threat/2013/02/common_sense_guide_to_mitigating_insider_threats_-_best_practice_16_of_19.html</link>
<description>This sixteenth of 19 blog posts about the fourth edition of the Common Sense Guide to Mitigating Insider Threats describes Practice 16: Develop a formalized insider threat program.</description>
<pubDate>Wed, 06 Feb 2013 06:38:07 -0500</pubDate>
</item>
As I've said, BeautifulSoup fails to find both pubDate and Link, which are crucial to my app.
Any advice would be greatly appreciated.
[toc] | [next] | [standalone]
| From | John Gordon <gordon@panix.com> |
|---|---|
| Date | 2013-02-07 21:00 +0000 |
| Message-ID | <kf14lm$kt4$1@reader1.panix.com> |
| In reply to | #38373 |
In <16828a11-6c7c-4ab6-b406-6b8819883b5e@googlegroups.com> darrel.rendell@gmail.com writes:
> def pageReader(url):
> try:
> readPage =3D urllib2.urlopen(url)
> except urllib2.URLError, e:
> # print 'We failed to reach a server.'
> # print 'Reason: ', e.reason
> return 404 =20
> except urllib2.HTTPError, e:
> # print('The server couldn\'t fulfill the request.')
> # print('Error code: ', e.code) =20
> return 404 =20
> else:
> outputPage =3D readPage.read() =20
> return outputPage
> To recreate my error, simply call the above function with an argument
> similar to:
> http://www.cert.org/nav/cert_announcements.rss
> You'll see I'm trying to return the first child.
The above code produces no output at all. The pageReader() function is
defined but never called.
If we add a few lines at the bottom:
if __name__ == '__main__':
print pageReader('http://www.cert.org/nav/cert_announcements.rss')
Then we get some output:
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>CERT Announcements</title>
<link>http://www.cert.org/nav/whatsnew.html</link>
<language>en-us</language>
<description>Announcements: What's New on the CERT web site</description>
<item>
<title>New Blog Entry: Common Sense Guide to Mitigating Insider Threats - Best Practice 16 (of 19)</title>
<link>http://www.cert.org/blogs/insider_threat/2013/02/common_sense_guide_to_mitigating_insider_threats_-_best_practice_16_of_19.html</link>
<description>This sixteenth of 19 blog posts about the fourth edition of the Common Sense Guide to Mitigating Insider Threats describes Practice 16: Develop a formalized insider threat program.</description>
<pubDate>Wed, 06 Feb 2013 06:38:07 -0500</pubDate>
</item>
...
> As I've said, BeautifulSoup fails to find both pubDate and Link, which are =
> crucial to my app.
> Any advice would be greatly appreciated.
You haven't included the BeautifulSoup code which attempts to parse the XML,
so it's impossible to say exactly what the error is.
However, I have a guess: you said you're trying to return the first
child. Based on the above output, the first child is the <channel>
element, not an <item> element. Perhaps that's the issue?
--
John Gordon A is for Amy, who fell down the stairs
gordon@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
[toc] | [prev] | [next] | [standalone]
| From | xDog Walker <thudfoo@gmail.com> |
|---|---|
| Date | 2013-02-07 21:10 -0800 |
| Message-ID | <mailman.1474.1360300288.2939.python-list@python.org> |
| In reply to | #38373 |
On Thursday 2013 February 07 12:36, darrel.rendell@gmail.com wrote: > As I've said, BeautifulSoup fails to find both pubDate and Link, which are > crucial to my app > Any advice would be greatly appreciated. http://packages.python.org/feedparser -- Yonder nor sorghum stenches shut ladle gulls stopper torque wet strainers.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web