Update How To Geek

This commit is contained in:
Kovid Goyal 2020-05-20 07:34:34 +05:30
parent cbb63a5f92
commit b4d6644622
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -4,7 +4,7 @@ from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1282101454(BasicNewsRecipe): class AdvancedUserRecipe1282101454(BasicNewsRecipe):
title = 'How To Geek' title = 'How To Geek'
language = 'en' language = 'en'
__author__ = 'TonytheBookworm' __author__ = 'TonytheBookworm, PatStapleton (update 2020-05-20)'
description = 'Daily Computer Tips and Tricks' description = 'Daily Computer Tips and Tricks'
publisher = 'Howtogeek' publisher = 'Howtogeek'
category = 'PC,tips,tricks' category = 'PC,tips,tricks'
@ -22,11 +22,11 @@ class AdvancedUserRecipe1282101454(BasicNewsRecipe):
remove_tags = [ remove_tags = [
dict(name='a', attrs={'target': ['_blank']}), dict(name='a', attrs={'target': ['_blank']}),
dict(name='table', attrs={'id': ['articleTable']}), dict(name='table', attrs={'id': ['articleTable']}),
dict(name='div', attrs={'class': ['feedflare', 'article-share-widgets', 'related-articles', 'comments']}), dict(name='div', attrs={'class': ['feedflare', 'article-share-widgets', 'related-articles', 'comments', 'nextup']}),
] ]
feeds = [ feeds = [
('Tips', 'http://feeds.howtogeek.com/howtogeek') ('How-to Geek', 'https://www.howtogeek.com/feed/')
] ]