calibre/recipes/omgubuntu.recipe
Kovid Goyal 1b1efb0890
pep8
2022-05-02 20:28:41 +05:30

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')]