mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
16 lines
436 B
Python
16 lines
436 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class OMGUbuntu(BasicNewsRecipe):
|
|
title = u"Omg! Ubuntu!"
|
|
description = u"Online news site covering Ubuntu activities. Recipe pulls articles from past 7 days."
|
|
language = 'en'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
|
|
feeds = [(u'Omg Ubuntu', u'https://www.omgubuntu.co.uk/feed')]
|