mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
35 lines
1.4 KiB
Python
35 lines
1.4 KiB
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
from __future__ import unicode_literals, division, absolute_import, print_function
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1468055030(BasicNewsRecipe):
|
|
title = 'DataNews'
|
|
__author__ = 'oCkz7bJ_'
|
|
description = 'Technology / Best Practice / Business'
|
|
publisher = 'Roularta Media Group'
|
|
category = 'news, information technology, Belgium'
|
|
language = 'nl_BE'
|
|
|
|
oldest_article = 2
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
remove_javascript = True
|
|
|
|
cover_url = 'http://datablend.be/wp-content/uploads/2014/01/Data_News_logo-short.jpg'
|
|
masthead_url = 'http://datanews.knack.be/images/svg/logos/logo_Site-DataNews-NL.svg'
|
|
|
|
# Source: http://datanews.knack.be/rss/
|
|
feeds = [
|
|
('Technology', 'http://datanews.knack.be/ict/feed.rss'),
|
|
('Opinie', 'http://datanews.knack.be/ict/opinie/feed.rss'),
|
|
('Gadgets', 'http://datanews.knack.be/ict/gadgets/feed.rss'),
|
|
('Foto', 'http://datanews.knack.be/ict/foto/feed.rss'),
|
|
('Nieuws', 'http://datanews.knack.be/ict/nieuws/feed.rss'),
|
|
('Reviews', 'http://datanews.knack.be/ict/reviews/feed.rss'),
|
|
('Startups', 'http://datanews.knack.be/ict/start-ups/feed.rss'),
|
|
]
|