mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-12-27 15:20:18 -05:00
21 lines
756 B
Python
21 lines
756 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1717747140(BasicNewsRecipe):
|
|
title = 'The eBook Reader'
|
|
language = 'en'
|
|
__author__ = 'Spicy Poison'
|
|
description = ('The eBook Reader.com is an independently owned and operated website.'
|
|
'The reviews, tutorials, news updates, videos, everything is funded solely by visitors like you.')
|
|
oldest_article = 30
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
encoding = 'utf-8'
|
|
masthead_url = 'https://blog.the-ebook-reader.com/wp-content/uploads/2019/03/logo-sharper.png'
|
|
|
|
feeds = [
|
|
('All Articles', 'https://blog.the-ebook-reader.com/feed/'),
|
|
]
|