mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
21 lines
625 B
Python
21 lines
625 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1717744568(BasicNewsRecipe):
|
|
title = 'Good e-Reader'
|
|
language = 'en'
|
|
__author__ = 'Spicy Poison'
|
|
publisher = 'Good e-Reader Inc'
|
|
oldest_article = 30
|
|
max_articles_per_feed = 50
|
|
encoding = 'utf-8'
|
|
masthead_url = 'https://assets.goodereader.com/blog/uploads/images/2022/10/06041743/Good-E-Reader-Logo-Black-1.svg'
|
|
remove_empty_feeds = True
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
('All Articles', 'https://goodereader.com/blog/feed'),
|
|
]
|