mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
23 lines
579 B
Python
23 lines
579 B
Python
#!/usr/bin/env python
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2008 - 2009, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
engadget.com
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Engadget(BasicNewsRecipe):
|
|
title = u'Engadget'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'Tech news'
|
|
language = 'en'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = True
|
|
|
|
feeds = [ (u'Posts', u'http://www.engadget.com/rss.xml')]
|
|
|