Help with RSS recipes
Hi,
I'm trying to download RSS feeds for The American Journal of Transplantation and Clinical Infectious Disease. I can't program in pyton so I just tried the standard receips generated by 'calibre'. Unfortunately, i get in both cases
feed://www.journals.uchicago.edu/action/showFeed?ui=0&mi=3b5u46&ai=sb&jc=cid&type=etoc&fee d=rss
unknown feed type
Here the recipes
class AdvancedUserRecipe1245070075(BasicNewsRecipe):
title = u'CID'
oldest_article = 7
max_articles_per_feed = 100
feeds = [(u'CID', u'feed://www.journals.uchicago.edu/action/showFeed?ui=0&mi=3b5u46&ai=sb&jc=cid&type=etoc&fee d=rss')]
and
class AdvancedUserRecipe1245070101(BasicNewsRecipe):
title = u'ATJ'
oldest_article = 14
max_articles_per_feed = 100
feeds = [(u'American Journal of Transplantation', u'feed://www3.interscience.wiley.com/rss/journal/118499698')]
Thanks for your help
|