mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
17 lines
453 B
Plaintext
17 lines
453 B
Plaintext
__license__ = 'GPL v3'
|
|
__author__ = 'faber1971'
|
|
description = 'Italian soccer news website - v1.00 (17, December 2011)'
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1324114272(BasicNewsRecipe):
|
|
title = u'Datasport'
|
|
language = 'it'
|
|
__author__ = 'faber1971'
|
|
oldest_article = 1
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
|
|
feeds = [(u'Datasport', u'http://www.datasport.it/calcio/rss.xml')]
|