mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
29 lines
763 B
Python
29 lines
763 B
Python
#!/usr/bin/env python2
|
|
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'teepel <teepel44@gmail.com>, Artur Stachecki <artur.stachecki@gmail.com>'
|
|
|
|
'''
|
|
equipped.pl
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class equipped(BasicNewsRecipe):
|
|
title = u'Equipped'
|
|
__author__ = 'teepel <teepel44@gmail.com>'
|
|
language = 'pl'
|
|
description = u'Wiadomości z equipped.pl'
|
|
INDEX = 'http://equipped.pl'
|
|
extra_css = '.alignleft {float:left; margin-right:5px;}'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
remove_empty_feeds = True
|
|
simultaneous_downloads = 5
|
|
remove_javascript = True
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
|
|
feeds = [(u'Equipped', u'http://feeds.feedburner.com/Equippedpl?format=xml')]
|