mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
14 lines
458 B
Plaintext
14 lines
458 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class GreenLinux(BasicNewsRecipe):
|
|
title = u'GreenLinux.pl'
|
|
__author__ = 'fenuks'
|
|
category = 'IT'
|
|
language = 'pl'
|
|
cover_url = 'http://lh5.ggpht.com/_xd_6Y9kXhEc/S8tjyqlfhfI/AAAAAAAAAYU/zFNTp07ZQko/top.png'
|
|
oldest_article = 15
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
|
|
feeds = [(u'Newsy', u'http://feeds.feedburner.com/greenlinux')]
|