mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
14 lines
529 B
Plaintext
14 lines
529 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Historia_org_pl(BasicNewsRecipe):
|
|
title = u'Historia.org.pl'
|
|
__author__ = 'fenuks'
|
|
description = u'history site'
|
|
cover_url = 'http://lh3.googleusercontent.com/_QeRQus12wGg/TOvHsZ2GN7I/AAAAAAAAD_o/LY1JZDnq7ro/logo5.jpg'
|
|
category = 'history'
|
|
language = 'pl'
|
|
oldest_article = 8
|
|
max_articles_per_feed = 100
|
|
|
|
feeds = [(u'Artykuły', u'http://www.historia.org.pl/index.php?format=feed&type=rss')]
|