mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
19 lines
540 B
Plaintext
19 lines
540 B
Plaintext
__version__ = 'v1.0'
|
|
__date__ = '5, May 2012'
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1336226255(BasicNewsRecipe):
|
|
title = u'National Geographic'
|
|
__author__ = 'faber1971'
|
|
description = 'Science magazine'
|
|
language = 'it'
|
|
|
|
oldest_article = 15
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
remove_tags = [dict(name='div', attrs={'class': 'banner-abbonamenti'})]
|
|
feeds = [(u'National Geographic',
|
|
u'http://www.nationalgeographic.it/rss/all/rss2.0.xml')]
|