mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-02-21 02:30:13 -05:00
Add Hack a Day recipe
Added the Hack a Day recipe with description, and feed settings.
This commit is contained in:
parent
438e2eca72
commit
7554d0873b
20
recipes/hackaday.recipe
Normal file
20
recipes/hackaday.recipe
Normal file
@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env python
|
||||
# vim:fileencoding=utf-8
|
||||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
|
||||
class HackADayRecipe(AutomaticNewsRecipe):
|
||||
__author__ = 'rui-rebelo'
|
||||
title = 'Hack a Day'
|
||||
description = 'Hackaday is a website and community focused on hardware hacking, technology projects, and DIY electronics. It features daily articles about innovative projects, news, tutorials, and the latest in hardware engineering news.'
|
||||
oldest_article = 10
|
||||
max_articles_per_feed = 100
|
||||
auto_cleanup = True
|
||||
language = 'en-US'
|
||||
|
||||
publisher = 'Hack a Day'
|
||||
|
||||
feeds = [
|
||||
('Hack a Day', 'https://hackaday.com/blog/feed/'),
|
||||
]
|
||||
|
||||
cover_url = 'https://hackaday.com/wp-content/uploads/2020/07/hackaday-logo-with-text-opengraph-default-image.jpg'
|
||||
Loading…
x
Reference in New Issue
Block a user