Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Rss lib in python?

1 view
Skip to first unread message

Owen

unread,
May 31, 2005, 10:38:40 PM5/31/05
to
Hi all,

i want to know some rss library in python.For example, some for rss
readers, and some for generator.

Thanks for any information.

Owen.

nephish

unread,
May 31, 2005, 11:10:20 PM5/31/05
to
Hey man, i would like to know this too.
hope someone knows...

lihui

unread,
May 31, 2005, 11:35:28 PM5/31/05
to nephish, pytho...@python.org
PyRSS2Gen

http://www.dalkescientific.com/Python/PyRSS2Gen.html

example:
mport datetime
import PyRSS2Gen

rss = PyRSS2Gen.RSS2(
title = "Andrew's PyRSS2Gen feed",
link = "http://www.dalkescientific.com/Python/PyRSS2Gen.html",
description = "The latest news about PyRSS2Gen, a "
"Python library for generating RSS2 feeds",

lastBuildDate = datetime.datetime.now(),

items = [
PyRSS2Gen.RSSItem(
title = "PyRSS2Gen-0.0 released",
link = "http://www.dalkescientific.com/news/030906-PyRSS2Gen.html",
description = "Dalke Scientific today announced PyRSS2Gen-0.0, "
"a library for generating RSS feeds for Python. ",
guid = PyRSS2Gen.Guid("http://www.dalkescientific.com/news/"
"030906-PyRSS2Gen.html"),
pubDate = datetime.datetime(2003, 9, 6, 21, 31)),
PyRSS2Gen.RSSItem(
title = "Thoughts on RSS feeds for bioinformatics",
link = "http://www.dalkescientific.com/writings/diary/"
"archive/2003/09/06/RSS.html",
description = "One of the reasons I wrote PyRSS2Gen was to "
"experiment with RSS for data collection in "
"bioinformatics. Last year I came across...",
guid = PyRSS2Gen.Guid("http://www.dalkescientific.com/writings/"
"diary/archive/2003/09/06/RSS.html"),
pubDate = datetime.datetime(2003, 9, 6, 21, 49)),
])

rss.write_xml(open("pyrss2gen.xml", "w"))


31 May 2005 20:10:20 -0700, nephish <coty...@yahoo.com>:


> Hey man, i would like to know this too.
> hope someone knows...
>

> --
> http://mail.python.org/mailman/listinfo/python-list
>


--
my gmail:lihuimail(at)gmail.com

Grant Edwards

unread,
Jun 1, 2005, 12:16:01 AM6/1/05
to
On 2005-06-01, Owen <je...@126.com> wrote:

> i want to know some rss library in python.For example, some
> for rss readers, and some for generator.

http://www.learnwebskills.com/search/main.html
http://www.learnwebskills.com/search/google.html

Googling for "python rss library" generate a whole page
full of useful looking stuff:

http://www.google.com/search?q=python+rss+library

Here's an RSS aggregator written in Python:

http://offog.org/code/rawdog.html

--
Grant Edwards grante Yow! HOW could a GLASS
at be YELLING??
visi.com

lihui

unread,
Jun 1, 2005, 12:29:44 AM6/1/05
to Grant Edwards, pytho...@python.org
Please use feedparser:

http://feedparser.org/

2005/6/1, Grant Edwards <gra...@visi.com>:

Owen

unread,
Jun 1, 2005, 11:17:26 PM6/1/05
to
lihui <lihu...@gmail.com> wrote in message news:<mailman.311.11176001...@python.org>...

> Please use feedparser:
>
> http://feedparser.org/
>
> 2005/6/1, Grant Edwards <gra...@visi.com>:
> > On 2005-06-01, Owen <je...@126.com> wrote:
> >=20

> > > i want to know some rss library in python.For example, some
> > > for rss readers, and some for generator.
> >=20
> > http://www.learnwebskills.com/search/main.html
> > http://www.learnwebskills.com/search/google.html
> >=20

> > Googling for "python rss library" generate a whole page
> > full of useful looking stuff:
> >=20
> > http://www.google.com/search?q=3Dpython+rss+library
> >=20

> > Here's an RSS aggregator written in Python:
> >=20
> > http://offog.org/code/rawdog.html
> >=20
> > --
> > Grant Edwards grante Yow! HOW could a GLAS=> >=20
>
>
> --=20
> my gmail:lihuimail(at)gmail.com

Thank you for your interest in my question.

now i am finding some RSS readers in python(GUI in wxPython).

0 new messages