Open GoogleCodeExporter opened 9 years ago
Hi,
I'm not a python expert, but it looks like the feed URLs in pydelicious are all
out of date / don't exist on the delicious website anymore.
You'll need to update the pydelicious URLs in the __init__.py file.
I'm going through the collective intelligence book by o'reilly.
Changing like 447 in __init__.py to:
rss = http_request('http://feeds.delicious.com/v2/rss').read()
got rid of the error messages for me. A better solution is still needed though
as the original code brought up tags/posts/popular/etc depending on function
you ran, whereas this hack above isn't selecting.
Cheers,
Chris
Original comment by chris.an...@gmail.com
on 28 Oct 2011 at 1:09
Same book! I'll try that. Thank you.
Original comment by santiago...@gmail.com
on 28 Oct 2011 at 1:15
Just change this line, and everything will work (at least for me):
File: "...\Python27\Lib\site-packages\pydelicious" (or any other python version
you're using)
Line: 78
From: "DLCS_RSS = 'http://del.icio.us/rss/'"
To: "DLCS_RSS = 'http://feeds.delicious.com/v2/rss/'"
After that I don't get any error (at least for get_popular method).
Original comment by mattos.m...@gmail.com
on 2 Nov 2011 at 5:44
Just tested pydelicious.get_userposts('myusr') method and it's working too.
Original comment by mattos.m...@gmail.com
on 2 Nov 2011 at 5:47
Original issue reported on code.google.com by
santiago...@gmail.com
on 19 Aug 2011 at 12:33