mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
54 lines
2.8 KiB
Python
54 lines
2.8 KiB
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1716102924(BasicNewsRecipe):
|
|
title = 'Make Use of'
|
|
language = 'en'
|
|
description = 'MUO is now one of the largest online technology publications that millions of readers every month turn to for expert tech guidance.'
|
|
__author__ = 'Spicy Poison'
|
|
publisher = 'Valnet Publishing Group'
|
|
encoding = 'utf-8'
|
|
use_embedded_content = False
|
|
masthead_url = 'https://www.valnetinc.com/images/brand/muo-logo-full-colored-dark.svg'
|
|
no_stylesheets = True
|
|
ignore_duplicate_articles = {'title', 'url'}
|
|
oldest_article = 7
|
|
max_articles_per_feed = 50
|
|
remove_empty_feeds = True
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
# PC & Mobile
|
|
('PC & Mobile', 'https://www.makeuseof.com/feed/category/pc-mobile/'),
|
|
('Windows', 'https://www.makeuseof.com/feed/category/windows/'),
|
|
('Mac', 'https://www.makeuseof.com/feed/category/mac/'),
|
|
('Linux', 'https://www.makeuseof.com/feed/category/linux/'),
|
|
('Android', 'https://www.makeuseof.com/feed/category/google-android/'),
|
|
('iOS', 'https://www.makeuseof.com/feed/category/ios/'),
|
|
# Internet
|
|
('Internet', 'https://www.makeuseof.com/feed/category/web-based/'),
|
|
('Social Media', 'https://www.makeuseof.com/feed/category/social-media/'),
|
|
('Security', 'https://www.makeuseof.com/feed/category/security/'),
|
|
('Programming', 'https://www.makeuseof.com/feed/category/programming/'),
|
|
# Productivity
|
|
('Productivity', 'https://www.makeuseof.com/feed/category/productivity/'),
|
|
('Creative', 'https://www.makeuseof.com/feed/category/creative/'),
|
|
('DIY', 'https://www.makeuseof.com/feed/category/diy-projects/'),
|
|
# Lifestyle
|
|
('Lifestyle', 'https://www.makeuseof.com/feed/category/lifestyle/'),
|
|
('Smart Home', 'https://www.makeuseof.com/feed/category/smart-home/'),
|
|
('Gaming', 'https://www.makeuseof.com/feed/category/games/'),
|
|
('Entertainment', 'https://www.makeuseof.com/feed/category/entertainment/'),
|
|
# Technology Explained
|
|
('Technology Explained', 'https://www.makeuseof.com/feed/category/technology-explained/'),
|
|
('Artificial Intelligence', 'https://www.makeuseof.com/feed/tag/artificial-intelligence/'),
|
|
('Tech Jargon', 'https://www.makeuseof.com/feed/tag/pc-jargon-terminology/'),
|
|
('Computer Networking', 'https://www.makeuseof.com/feed/tag/computer-networking/'),
|
|
|
|
('Product Reviews', 'https://www.makeuseof.com/feed/category/product-reviews/'),
|
|
('Buying Guides', 'https://www.makeuseof.com/feed/category/buying-guides/'),
|
|
('Cheet Sheet', 'https://www.makeuseof.com/feed/tag/cheat-sheet/'),
|
|
]
|