mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
29 lines
753 B
Plaintext
29 lines
753 B
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2010, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
jp.dk
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class JP_dk(BasicNewsRecipe):
|
|
title = 'Jyllands-Posten'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'News from Denmark'
|
|
publisher = 'jp.dk'
|
|
category = 'news, politics, Denmark'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
language = 'da'
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
(u'Tophistorier', u'http://www.jp.dk/rss/topnyheder.jsp'),
|
|
(u'Seneste nyt',
|
|
u'http://jp.dk/index.jsp?service=rssfeed&submode=seneste'),
|
|
(u'Indland', u'http://www.jp.dk/rss/indland.jsp'),
|
|
]
|