Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre > Recipes

Notices

Reply
 
Thread Tools Search this Thread
Old 01-20-2012, 02:11 AM   #1
kensun
Junior Member
kensun began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Jan 2012
Device: kindle
recipe for Klip.me Read it later

Klip.me provide the same bookmark function with http://readitlaterlist.com/.but It's content parse is better than readeitelaterlist.
here is the code
Code:
from calibre.web.feeds.news import BasicNewsRecipe

class AdvancedUserRecipe1299694372(BasicNewsRecipe):
    title                             = u'Klipme'
    __author__                  = 'Ken Sun'
    publisher                     = 'Klip.me'
    category                      = 'info, custom, Klip.me'
    oldest_article               = 365
    max_articles_per_feed = 100
    no_stylesheets        = True
    remove_javascript     = True
    remove_tags              = [
	dict(name='div', attrs={'id':'text_controls_toggle'})
	,dict(name='script')
	,dict(name='div', attrs={'id':'text_controls'})
	,dict(name='div', attrs={'id':'editing_controls'})
	,dict(name='div', attrs={'class':'bar bottom'})
	 ]
    use_embedded_content  = False
    needs_subscription    = True
    INDEX                 = u'http://www.klip.me'
    LOGIN                 = INDEX + u'/fav/signin?callback=/fav'


    feeds          = [
            (u'Klip.me unread', u'http://www.klip.me/fav'),
            (u'Klip.me started', u'http://www.klip.me/fav?s=starred')
            ]
   

    def get_browser(self):     
        br = BasicNewsRecipe.get_browser()
        if self.username is not None:
            br.open(self.LOGIN)
            br.select_form(nr=0)
            br['Email'] = self.username
            if self.password is not None:
               br['Passwd'] = self.password
            br.submit()
        return br

    def parse_index(self):
        totalfeeds = []
        lfeeds = self.get_feeds()
        for feedobj in lfeeds:
            feedtitle, feedurl = feedobj
            self.report_progress(0, 'Fetching feed'+' %s...'%(feedtitle if feedtitle else feedurl))
            articles = []       
            soup = self.index_to_soup(feedurl)           
            for item in soup.findAll('table',attrs={'class':['item','item new']}):
                atag = item.a
                if atag and atag.has_key('href'):
                    url         = atag['href']
                    articles.append({
                                     'url'        :url
                                    })                    
            totalfeeds.append((feedtitle, articles))
        return totalfeeds

    def print_version(self, url):
        return 'http://www.klip.me' + url

    def populate_article_metadata(self, article, soup, first):
        article.title  = soup.find('title').contents[0].strip()

    def postprocess_html(self, soup, first_fetch):
        for link_tag in soup.findAll(attrs={"id" : "story"}):
            link_tag.insert(0,'<h1>'+soup.find('title').contents[0].strip()+'</h1>')
            print link_tag

        return soup
kensun is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Read It Later Recipe awitko Recipes 6 03-09-2012 04:17 PM
recipe doesn't read my Le Monde Diplomatique subscription! dolcem Recipes 1 10-16-2011 07:25 PM
Improved Read it Later Recipe! Tommertron Recipes 2 07-08-2011 11:11 AM
read items in a recipe are marked as read? jomaweb Calibre 2 01-27-2010 05:21 AM
Not able to read recipe downloads anymore pav Calibre 6 09-03-2009 10:26 PM


All times are GMT -4. The time now is 05:43 PM.


MobileRead.com is a privately owned, operated and funded community.