calibre/recipes/omgubuntu.recipe
2025-01-24 11:14:14 +01:00

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