mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
28 lines
680 B
Python
28 lines
680 B
Python
#!/usr/bin/env python
|
|
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'teepel <teepel44@gmail.com>'
|
|
|
|
'''
|
|
appfunds.blogspot.com
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class app_funds(BasicNewsRecipe):
|
|
title = u'APP Funds'
|
|
__author__ = 'teepel <teepel44@gmail.com>'
|
|
language = 'pl'
|
|
description = 'Blog inwestora dla inwestorów i oszczędzających'
|
|
INDEX = 'http://appfunds.blogspot.com'
|
|
remove_empty_feeds = True
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
simultaneous_downloads = 5
|
|
remove_javascript = True
|
|
no_stylesheets = True
|
|
auto_cleanup = True
|
|
|
|
feeds = [(u'blog', u'http://feeds.feedburner.com/blogspot/etVI')]
|