mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
21 lines
667 B
Plaintext
21 lines
667 B
Plaintext
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class Kosmonauta(BasicNewsRecipe):
|
|
title = u'Kosmonauta.net'
|
|
__author__ = 'fenuks'
|
|
description = u'polskojęzyczny portal w całości dedykowany misjom kosmicznym i badaniom kosmosu.'
|
|
category = 'astronomy'
|
|
language = 'pl'
|
|
cover_url = 'http://bi.gazeta.pl/im/4/10393/z10393414X,Kosmonauta-net.jpg'
|
|
no_stylesheets = True
|
|
oldest_article = 7
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
remove_attributes = ['style']
|
|
max_articles_per_feed = 100
|
|
feeds = [(u'Kosmonauta.net', u'http://www.kosmonauta.net/feed')]
|
|
|