Giter Site home page Giter Site logo

kindlerss's Introduction

Hi there ๐Ÿ‘‹

Anurag's GitHub stats IamProgrammer Nice and cute logo designed by SAWARATSUKI

kindlerss's People

Contributors

ate329 avatar stvnliu avatar

Watchers

 avatar

Forkers

stvnliu

kindlerss's Issues

check this example from calibre

the example from calibre
https://manual.calibre-ebook.com/news.html
'''python
import string, re
from calibre import strftime
from calibre.web.feeds.recipes import BasicNewsRecipe
from calibre.ebooks.BeautifulSoup import BeautifulSoup

class NYTimes(BasicNewsRecipe):

title       = 'The New York Times'
__author__  = 'Kovid Goyal'
description = 'Daily news from the New York Times'
timefmt = ' [%a, %d %b, %Y]'
needs_subscription = True
remove_tags_before = dict(id='article')
remove_tags_after  = dict(id='article')
remove_tags = [dict(attrs={'class':['articleTools', 'post-tools', 'side_tool', 'nextArticleLink clearfix']}),
            dict(id=['footer', 'toolsRight', 'articleInline', 'navigation', 'archive', 'side_search', 'blog_sidebar', 'side_tool', 'side_index']),
            dict(name=['script', 'noscript', 'style'])]
encoding = 'cp1252'
no_stylesheets = True
extra_css = 'h1 {font: sans-serif large;}\n.byline {font:monospace;}'

def get_browser(self):
    br = BasicNewsRecipe.get_browser(self)
    if self.username is not None and self.password is not None:
        br.open('https://www.nytimes.com/auth/login')
        br.select_form(name='login')
        br['USERID']   = self.username
        br['PASSWORD'] = self.password
        br.submit()
    return br

def parse_index(self):
    soup = self.index_to_soup('https://www.nytimes.com/pages/todayspaper/index.html')

    def feed_title(div):
        return ''.join(div.findAll(text=True, recursive=False)).strip()

    articles = {}
    key = None
    ans = []
    for div in soup.findAll(True,
         attrs={'class':['section-headline', 'story', 'story headline']}):

         if ''.join(div['class']) == 'section-headline':
             key = string.capwords(feed_title(div))
             articles[key] = []
             ans.append(key)

         elif ''.join(div['class']) in ['story', 'story headline']:
             a = div.find('a', href=True)
             if not a:
                 continue
             url = re.sub(r'\?.*', '', a['href'])
             url += '?pagewanted=all'
             title = self.tag_to_string(a, use_alt=True).strip()
             description = ''
             pubdate = strftime('%a, %d %b')
             summary = div.find(True, attrs={'class':'summary'})
             if summary:
                 description = self.tag_to_string(summary, use_alt=False)

             feed = key if key is not None else 'Uncategorized'
             if feed not in articles:
                 articles[feed] = []
             if not 'podcasts' in url:
                 articles[feed].append(
                           dict(title=title, url=url, date=pubdate,
                                description=description,
                                content=''))
    ans = self.sort_index_by(ans, {'The Front Page':-1, 'Dining In, Dining Out':1, 'Obituaries':2})
    ans = [(key, articles[key]) for key in ans if key in articles]
    return ans

def preprocess_html(self, soup):
    refresh = soup.find('meta', {'http-equiv':'refresh'})
    if refresh is None:
        return soup
    content = refresh.get('content').partition('=')[2]
    raw = self.browser.open('https://www.nytimes.com'+content).read()
    return BeautifulSoup(raw.decode('cp1252', 'replace'))

'''

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.