calibre/recipes/infoworld.recipe
Kovid Goyal 29cd8d64ea
Change shebangs to python from python2
Also remove a few other miscellaneous references to python2
2020-08-22 18:47:51 +05:30

26 lines
613 B
Python

#!/usr/bin/env python
__license__ = 'GPL v3'
__copyright__ = '2009, Rick Kellogg'
'''
Infoworld.com
'''
from calibre.web.feeds.news import BasicNewsRecipe
class Engadget(BasicNewsRecipe):
title = u'Infoworld.com'
__author__ = 'Rick Kellogg'
description = 'news'
language = 'en'
oldest_article = 7
max_articles_per_feed = 100
no_stylesheets = True
use_embedded_content = False
auto_cleanup = True
feeds = [(u'Top Tech Stories', u'http://www.infoworld.com/index.rss'),
(u'Today\'s Tech Headlines',
u'http://www.infoworld.com/news/index.rss')]