This commit is contained in:
Kovid Goyal 2023-08-07 08:05:00 +05:30
parent a969087d5c
commit 4659974883
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -4,8 +4,7 @@ Fetch The Oldie (Online Edition)
import re import re
from calibre.web.feeds.news import BasicNewsRecipe from calibre.web.feeds.news import BasicNewsRecipe
from datetime import datetime, timedelta from datetime import datetime
from collections import OrderedDict
class PrivateEyeRecipe(BasicNewsRecipe): class PrivateEyeRecipe(BasicNewsRecipe):
## ##
@ -15,7 +14,12 @@ class PrivateEyeRecipe(BasicNewsRecipe):
# Initial version # Initial version
title = u'The Oldie (Online Edition)' title = u'The Oldie (Online Edition)'
description = u'The Oldie has been dubbed Private Eye for grown-ups and is read by intelligent people who are fed up with the formulaic nature of the celebrity-obsessed national press. The Oldie was cooked up in 1992 by Richard Ingrams (who previously co-founded Private Eye in 1961) as a free-thinking, funny magazine, a light-hearted alternative to a press obsessed with youth and celebrity. The editors claim that the Oldie is ageless and timeless, free of retirement advice, crammed with rejuvenating wit, intelligence and delight.' description = ('The Oldie has been dubbed Private Eye for grown-ups and is read by intelligent people who are fed'
' up with the formulaic nature of the celebrity-obsessed national press. The Oldie was cooked up in'
' 1992 by Richard Ingrams (who previously co-founded Private Eye in 1961) as a free-thinking,'
' funny magazine, a light-hearted alternative to a press obsessed with youth and celebrity.'
' The editors claim that the Oldie is ageless and timeless, free of retirement advice, crammed'
' with rejuvenating wit, intelligence and delight.')
publication_type = 'magazine' publication_type = 'magazine'
language = 'en_GB' language = 'en_GB'
encoding = 'utf-8' encoding = 'utf-8'