Update Pubblico Giornale

This commit is contained in:
Kovid Goyal 2012-10-09 19:40:16 +05:30
parent 4e5f5d2994
commit 79a7d12121

View File

@ -1,10 +1,10 @@
#!/usr/bin/env python #!/usr/bin/env python
__license__ = 'GPL v3' __license__ = 'GPL v3'
__author__ = 'iusvar' __copyright__ = 'iusvar'
__description__ = 'Pubblico giornale' __description__ = 'Pubblico giornale'
''' '''
http://pubblicogiornale.it/ [url]http://pubblicogiornale.it/[/url]
''' '''
from calibre.web.feeds.news import BasicNewsRecipe from calibre.web.feeds.news import BasicNewsRecipe
@ -16,6 +16,14 @@ class Pubblicogiornale(BasicNewsRecipe):
publisher = 'PUBBLICO EDIZIONI Srl' publisher = 'PUBBLICO EDIZIONI Srl'
category = 'News' category = 'News'
language = 'it' language = 'it'
__author__ = 'iusvar' __author__ = 'iusvar'
feeds = [(u'Pubblico giornale', u'http://pubblicogiornale.it/feed/')] 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/')
]