mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
26 lines
903 B
Python
26 lines
903 B
Python
#!/usr/bin/env python
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = 'Ruben Pollan <meskio@sindominio.net>'
|
|
__docformat__ = 'restructuredtext en'
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1335656316(BasicNewsRecipe):
|
|
title = u'AraInfo.org'
|
|
__author__ = 'Ruben Pollan'
|
|
description = 'Regional newspaper from Aragon'
|
|
language = 'es'
|
|
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
cover_url = u'http://arainfo.org/wordpress/wp-content/uploads/2011/10/logo-web_alta.jpg'
|
|
|
|
feeds = [
|
|
(u'Movimientos', u'http://arainfo.org/category/movimientos/feed/'),
|
|
(u'Econom\xeda', u'http://arainfo.org/category/economia/feed/'),
|
|
(u'Ecolog\xeda', u'http://arainfo.org/category/ecologia/feed/'),
|
|
(u'Culturas', u'http://arainfo.org/category/culturas/feed/'),
|
|
(u'Altavoz', u'http://arainfo.org/category/altavoz/feed/')]
|