Custom news fetch: Unreadable text
Hi guys,
I am kind of new in the forum. Could you help me with this please?
I created a custom receipt with Calibre and added some feeds. Calibre downloads the feeds and sends them to my kindle but the text of some feeds are not readable; they look like bunch of codes like this: ÐZ¸«ðÌÞOo—Lf#!)vŸÂÕDzÃIï¢$è8é a…zŸf#¿…üéôë˜úÜÉ¡ÙMèÊhƒ=¤¢oLýÃYétº°~·âÆ/‰]'òÿŠ ½ð�ÖçâêøÒ®ß¬üΡÉèšJ�åPÉeüŽTäù°z
What's that I am doing wrong? Did I used the wrong feed url?
This is how does it looks like when I click the advanced mode:
#!/usr/bin/env python2
# vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1453356016(BasicNewsRecipe):
title = 'Feeds'
oldest_article = 1
max_articles_per_feed = 100
auto_cleanup = True
feeds = [
('Experimental Economics', 'http://nep.repec.org/rss/nep-exp.rss.xml'),
('Development Economics', 'http://nep.repec.org/rss/nep-dev.rss.xml'),
('Experimental Economics', 'http://link.springer.com/search.rss?facet-content-type=Article&facet-journal-id=10683&channel-name=Experimental%20Economics'),
('Evolutionary Economics', 'http://nep.repec.org/rss/nep-evo.rss.xml'),
('IZA Labor Economics', 'http://www.izajole.com/latest/rss'),
('Labour Economics', 'http://nep.repec.org/rss/nep-lab.rss.xml'),
('Social Norms And Social Capital', 'http://nep.repec.org/rss/nep-soc.rss.xml'),
('The Quarterly Journal Of Economics', 'http://qje.oxfordjournals.org/rss/current.xml'),
('Evonomics', 'http://evonomics.com/feed/'),
('Cultural Economics', 'http://nep.repec.org/rss/nep-cul.rss.xml'),
('Law and Economics', 'http://nep.repec.org/rss/nep-law.rss.xml'),
('Public Economics', 'http://nep.repec.org/rss/nep-pbe.rss.xml'),
('Positive Political Economics', 'http://nep.repec.org/rss/nep-pol.rss.xml'),
]
Last edited by dumanb; 01-21-2016 at 01:04 AM.
|