View Single Post
Old 11-24-2011, 05:43 PM   #19
mrjaded
Junior Member
mrjaded began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Mar 2011
Device: kindle 4
Thanks from me too!

I've made this little addition to my own version of the recipe which adds a nice graphic masthead for each of the titles. I always found that the text version was a bit ugly and was so big it got truncated on my Kindle...

Code:
    title = u'The Guardian & The Observer'
    if date.today().weekday() == 6:
        base_url = "http://www.guardian.co.uk/theobserver"
        cover_pic = 'Observer digital edition'
        masthead_url = 'http://static.guim.co.uk/sys-images/Guardian/Pix/site_furniture/2010/10/19/1287478087992/The-Observer-001.gif'
    else:
        base_url = "http://www.guardian.co.uk/theguardian"
        cover_pic = 'Guardian digital edition'
        masthead_url = 'http://static.guim.co.uk/static/f76b43f9dcfd761f0ecf7099a127b603b2922118/common/images/logos/the-guardian/titlepiece.gif'
mrjaded is offline   Reply With Quote