Is "feedparser" deprecated?

2009-08-07 Thread John Nagle

  Feedparser requires SGMLlib, which has been removed from Python 3.0.
Feedparser hasn't been updated since 2007. Does this mean Feedparser
is dead?

John Nagle
--
http://mail.python.org/mailman/listinfo/python-list


Re: Is "feedparser" deprecated?

2009-08-07 Thread alex23
John Nagle  wrote:
>    Feedparser requires SGMLlib, which has been removed from Python 3.0.
> Feedparser hasn't been updated since 2007. Does this mean Feedparser
> is dead?

Wouldn't you be better served asking this on the feedparser bug
tracker?

http://code.google.com/p/feedparser/issues/list
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Is "feedparser" deprecated?

2009-08-07 Thread I V
On Fri, 07 Aug 2009 12:57:11 -0700, alex23 wrote:
> John Nagle  wrote:
>> Feedparser hasn't been updated since 2007. Does this mean Feedparser is
>> dead?
> 
> Wouldn't you be better served asking this on the feedparser bug tracker?
> 
> http://code.google.com/p/feedparser/issues/list

But if the project _is_ dead, one would be unlikely to get a response on 
the bug tracker; as seems, in fact, to have happened already:

http://code.google.com/p/feedparser/issues/detail?id=160&start=100

I take it that the lack of response to this issue means the answer is 
"yes."
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Is "feedparser" deprecated?

2009-08-07 Thread Gabriel Genellina

En Fri, 07 Aug 2009 16:07:48 -0300, John Nagle 
escribió:


   Feedparser requires SGMLlib, which has been removed from Python 3.0.
Feedparser hasn't been updated since 2007. Does this mean Feedparser
is dead?


Since we have generic and easy of use XML parsers like ElementTree and
lxml,  specialized rss parsers like feedparser are not so much required.
I've used ElementTree when I had to parse an rss feed in the past (not so
many times).

--
Gabriel Genellina

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


Re: Is "feedparser" deprecated?

2009-08-08 Thread member thudfoo
On Fri, Aug 7, 2009 at 6:10 PM, Gabriel Genellina wrote:

> En Fri, 07 Aug 2009 16:07:48 -0300, John Nagle 
> escribió:
>
>Feedparser requires SGMLlib, which has been removed from Python 3.0.
>> Feedparser hasn't been updated since 2007. Does this mean Feedparser
>> is dead?
>>
>
> Since we have generic and easy of use XML parsers like ElementTree and
> lxml,  specialized rss parsers like feedparser are not so much required.
> I've used ElementTree when I had to parse an rss feed in the past (not so
> many times).
>
> --
> Gabriel Genellina
>
>
> --
> http://mail.python.org/mailman/listinfo/python-list
>

feedparser is much more than than an just  another xml
 parser.

Read its documetion.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Is "feedparser" deprecated?

2009-08-08 Thread David Stanek
On Fri, Aug 7, 2009 at 3:07 PM, John Nagle wrote:
>  Feedparser requires SGMLlib, which has been removed from Python 3.0.
> Feedparser hasn't been updated since 2007. Does this mean Feedparser
> is dead?
>

The release is from 2007, but there are several recent commits.

http://code.google.com/p/feedparser/source/list


-- 
David
blog: http://www.traceback.org
twitter: http://twitter.com/dstanek
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Is "feedparser" deprecated?

2009-08-11 Thread John Nagle

Gabriel Genellina wrote:

En Fri, 07 Aug 2009 16:07:48 -0300, John Nagle 
escribió:


   Feedparser requires SGMLlib, which has been removed from Python 3.0.
Feedparser hasn't been updated since 2007. Does this mean Feedparser
is dead?


Since we have generic and easy of use XML parsers like ElementTree and
lxml,  specialized rss parsers like feedparser are not so much required.
I've used ElementTree when I had to parse an rss feed in the past (not so
many times).


   Take a look at what Feedparser has to do to deal with real-world RSS
feeds.  There are several hundred lines of code just to figure out the
source encoding.  There's gzip support, Atom support, base 64 encoding
support... Then there's the RSS polling protocol, which also requires
some support.  A basic XML parser only does part of the job.

John Nagle
--
http://mail.python.org/mailman/listinfo/python-list