mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
22 lines
770 B
Python
22 lines
770 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1718091380(BasicNewsRecipe):
|
|
title = 'LifeHacker'
|
|
language = 'en'
|
|
__author__ = 'Spicy Poison'
|
|
description = (
|
|
'Lifehacker covers tech, cooking, health, finance, entertainment, parenting,'
|
|
' home improvement, gardening, careers, and more, and our goal is to offer reliable tech help and credible, practical, science-based advice.')
|
|
oldest_article = 30
|
|
max_articles_per_feed = 50
|
|
encoding = 'utf-8'
|
|
masthead_url = 'https://lifehacker.com/images/lifehacker-logo.svg'
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
('All Articles', 'https://lifehacker.com/feed/rss'),
|
|
]
|