mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
29 lines
669 B
Python
29 lines
669 B
Python
#!/usr/bin/env python
|
|
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'teepel <teepel44@gmail.com>'
|
|
|
|
'''
|
|
nczas.com
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class nczas(BasicNewsRecipe):
|
|
title = u'Najwy\u017cszy Czas'
|
|
__author__ = 'teepel <teepel44@gmail.com>'
|
|
language = 'pl'
|
|
description = 'Wiadomości z nczas.com'
|
|
INDEX = 'http://nczas.com'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
use_embedded_content = True
|
|
remove_empty_feeds = True
|
|
simultaneous_downloads = 5
|
|
remove_javascript = True
|
|
remove_attributes = ['style']
|
|
no_stylesheets = True
|
|
|
|
feeds = [(u'Najwyższy Czas', u'http://nczas.com/feed/')]
|