mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = 'iusvar'
|
|
__description__ = 'Pubblico giornale'
|
|
|
|
'''
|
|
[url]http://pubblicogiornale.it/[/url]
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class Pubblicogiornale(BasicNewsRecipe):
|
|
description = 'Italian newspaper directed by Luca Telese'
|
|
cover_url = 'http://pubblicogiornale.it/wp-content/uploads/logo_n.png?84cd58'
|
|
title = u'Pubblico giornale'
|
|
publisher = 'PUBBLICO EDIZIONI Srl'
|
|
category = 'News'
|
|
language = 'it'
|
|
__author__ = 'iusvar'
|
|
|
|
feeds = [
|
|
(u'Politica', u'http://pubblicogiornale.it/category/politica/feed/'),
|
|
(u'Mondo', u'http://pubblicogiornale.it/category/mondo/feed/'),
|
|
(u'Economia', u'http://pubblicogiornale.it/category/economia-2/feed/'),
|
|
(u'Sport', u'http://pubblicogiornale.it/category/sport-2/feed/'),
|
|
(u'Cultura', u'http://pubblicogiornale.it/category/cultura-2/feed/'),
|
|
(u'Rete', u'http://pubblicogiornale.it/category/rete/feed/'),
|
|
(u'Illustrazioni', u'http://pubblicogiornale.it/category/illustrazioni/feed/')
|
|
]
|