mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-02-26 13:10:06 -05:00
27 lines
745 B
Python
27 lines
745 B
Python
#!/usr/bin/env python
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = u'2011, Tomasz Dlugosz <tomek3d@gmail.com>'
|
|
'''
|
|
swiatkindle.pl
|
|
'''
|
|
|
|
import re
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class swiatkindle(BasicNewsRecipe):
|
|
title = u'Swiat Kindle'
|
|
description = u'Blog o czytniku Amazon Kindle. Wersje, ksi\u0105\u017cki, kupowanie i korzystanie w Polsce'
|
|
language = 'pl'
|
|
__author__ = u'Tomasz D\u0142ugosz'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
|
|
feeds = [(u'\u015awiat Kindle - wpisy', u'http://swiatkindle.pl/feed')]
|
|
|
|
remove_tags = [dict(name = 'ul', attrs = {'class' : 'similar-posts'})]
|
|
|
|
preprocess_regexps = [(re.compile(u'<h3>Czytaj dalej:</h3>'), lambda match: '')]
|
|
|