calibre/recipes/pubblico_giornale.recipe
Kovid Goyal 29cd8d64ea
Change shebangs to python from python2
Also remove a few other miscellaneous references to python2
2020-08-22 18:47:51 +05:30

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/')
]