1#!/usr/local/bin/python3.8
2
3__license__ = 'GPL v3'
4__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
5'''
6www.theoldfoodie.com
7'''
8
9from calibre.web.feeds.news import BasicNewsRecipe
10
11
12class TheOldFoodie(BasicNewsRecipe):
13    title = 'The Old Foodie'
14    __author__ = 'Darko Miletic'
15    description = 'Food blog'
16    category = 'cuisine, food, blog'
17    oldest_article = 30
18    max_articles_per_feed = 100
19    use_embedded_content = True
20    no_stylesheets = True
21    encoding = 'utf-8'
22    language = 'en'
23
24    conversion_options = {
25        'comments': description, 'tags': category, 'language': 'en'
26    }
27
28    feeds = [
29        (u'Articles', u'http://www.theoldfoodie.com/feeds/posts/default?alt=rss')]
30