View Single Post
Old 11-09-2018, 02:36 PM   #1
DanielBonnery
Member
DanielBonnery began at the beginning.
 
Posts: 11
Karma: 10
Join Date: Jan 2016
Device: no
Mother Jones Recipe fails

The recipe fails.
Could we replace it by this one ?

Code:
#!/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 AdvancedUserRecipe1541791799(BasicNewsRecipe):
    title          = 'MJ'
    language = 'en'
    oldest_article = 14
    max_articles_per_feed = 200
    auto_cleanup   = True
    feeds          = [
        ('mj', 'http://feeds.feedburner.com/motherjones/feed'),
    ]
DanielBonnery is offline   Reply With Quote