Read DNA India on your iPad or Kindle in no time. Click download to load the free ebook on your reader.

Check out all the available public recipes or write your own with these quick start guides. ReadBeam is built on calibre, so everything in the docs and the fora applies here as well.

Download for free »

Mumbai news, India news, World news, breaking news

Language: en

Requires Subscription: No, it's available as free ebook

Schedule Every morning

			  import re
from calibre.web.feeds.news import BasicNewsRecipe

class DNAIndia(BasicNewsRecipe):

    title       = 'DNA India'
    description = 'Mumbai news, India news, World news, breaking news'
    __author__  = 'Kovid Goyal'
    language = 'en_IN'

    encoding    = 'cp1252'
    use_embedded_content = False

    no_stylesheets = True
    auto_cleanup = True

    feeds       = [
                   ('Top News', 'http://www.dnaindia.com/syndication/rss_topnews.xml'),
                   ('Popular News', 'http://www.dnaindia.com/syndication/rss_popular.xml'),
                   ('Recent Columns', 'http://www.dnaindia.com/syndication/rss_column.xml'),
                   ('Mumbai', 'http://www.dnaindia.com/syndication/rss,catid-1.xml'),
                   ('India', 'http://www.dnaindia.com/syndication/rss,catid-2.xml'),
                   ('World', 'http://www.dnaindia.com/syndication/rss,catid-9.xml'),
                   ('Money', 'http://www.dnaindia.com/syndication/rss,catid-4.xml'),
                   ('Sports', 'http://www.dnaindia.com/syndication/rss,catid-6.xml'),
                   ('After Hours', 'http://www.dnaindia.com/syndication/rss,catid-7.xml')
                   ]

    

    def print_version(self, url):
        match = re.search(r'newsid=(\d+)', url)
        if not match:
            return url
        return 'http://www.dnaindia.com/dnaprint.asp?newsid='+match.group(1)

    def postprocess_html(self, soup, first_fetch):
        for t in soup.findAll(['table', 'tr', 'td']):
            t.name = 'div'

        a = soup.find(href='http://www.3dsyndication.com/')
        if a is not None:
            a.parent.extract()
        return soup