mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
28 lines
866 B
Python
28 lines
866 B
Python
#!/usr/bin/env python2
|
|
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'teepel <teepel44@gmail.com>'
|
|
|
|
'''
|
|
dzialzagraniczny.pl
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class dzial_zagraniczny(BasicNewsRecipe):
|
|
title = u'Dział Zagraniczny'
|
|
__author__ = 'teepel <teepel44@gmail.com>'
|
|
language = 'pl'
|
|
description = u'Polskiego czytelnika to nie interesuje'
|
|
INDEX = 'http://dzialzagraniczny.pl'
|
|
extra_css = 'img {display: block;}'
|
|
oldest_article = 7
|
|
cover_url = 'https://fbcdn-profile-a.akamaihd.net/hprofile-ak-prn1/c145.5.160.160/559442_415653975115959_2126205128_n.jpg'
|
|
max_articles_per_feed = 100
|
|
remove_empty_feeds = True
|
|
remove_javascript = True
|
|
no_stylesheets = True
|
|
use_embedded_content = True
|
|
|
|
feeds = [(u'Dział zagraniczny', u'http://feeds.feedburner.com/dyndns/UOfz')]
|