mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
30 lines
938 B
Python
30 lines
938 B
Python
#!/usr/bin/env python2
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = 'MrStefan'
|
|
|
|
'''
|
|
www.lifehacking.pl
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class lifehacking(BasicNewsRecipe):
|
|
title = u'Lifehacker Polska'
|
|
__author__ = 'MrStefan <mrstefaan@gmail.com>'
|
|
language = 'pl'
|
|
description = u'Lifehacking - sposoby na zwiększanie własnej wydajności. Ułatwiaj sobie życie, wykorzystując wiedzę, metody, technologie, przydatne strony ...' # noqa
|
|
masthead_url = 'http://lifehacking.pl/wp-content/themes/lifehacking/images/lifehackerlogo.png'
|
|
remove_empty_feeds = True
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
remove_javascript = True
|
|
no_stylesheets = True
|
|
|
|
feeds = [(u'Lifehacker polska', u'http://feeds.feedburner.com/pl_lh')]
|
|
|
|
keep_only_tags = [
|
|
dict(name='header', attrs={'class': 'td-post-title'}),
|
|
dict(name='div', attrs={'class': 'td-post-content'})]
|