2010-04-22 11:55:00 +00:00
|
|
|
#!/usr/bin/env python
|
2010-04-23 11:14:13 +00:00
|
|
|
import logging
|
2010-04-22 11:55:00 +00:00
|
|
|
import re
|
2011-05-03 04:34:29 +00:00
|
|
|
import sys
|
|
|
|
|
2012-04-17 01:23:19 +00:00
|
|
|
from collections import defaultdict
|
|
|
|
from lxml.etree import tostring
|
|
|
|
from lxml.etree import tounicode
|
|
|
|
from lxml.html import document_fromstring
|
|
|
|
from lxml.html import fragment_fromstring
|
|
|
|
|
|
|
|
from cleaners import clean_attributes
|
|
|
|
from cleaners import html_cleaner
|
|
|
|
from htmls import build_doc
|
|
|
|
from htmls import get_body
|
|
|
|
from htmls import get_title
|
|
|
|
from htmls import shorten_title
|
|
|
|
|
|
|
|
|
2011-05-03 04:34:29 +00:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
2012-04-17 01:23:19 +00:00
|
|
|
log = logging.getLogger()
|
|
|
|
|
2010-04-22 11:55:00 +00:00
|
|
|
|
2011-05-03 04:34:29 +00:00
|
|
|
REGEXES = {
|
2012-04-17 01:23:19 +00:00
|
|
|
'unlikelyCandidatesRe': re.compile('combx|comment|community|disqus|extra|foot|header|menu|remark|rss|shoutbox|sidebar|sponsor|ad-break|agegate|pagination|pager|popup|tweet|twitter', re.I),
|
|
|
|
'okMaybeItsACandidateRe': re.compile('and|article|body|column|main|shadow', re.I),
|
|
|
|
'positiveRe': re.compile('article|body|content|entry|hentry|main|page|pagination|post|text|blog|story', re.I),
|
|
|
|
'negativeRe': re.compile('combx|comment|com-|contact|foot|footer|footnote|masthead|media|meta|outbrain|promo|related|scroll|shoutbox|sidebar|sponsor|shopping|tags|tool|widget', re.I),
|
|
|
|
'divToPElementsRe': re.compile('<(a|blockquote|dl|div|img|ol|p|pre|table|ul)', re.I),
|
2012-04-16 21:13:24 +00:00
|
|
|
#'replaceBrsRe': re.compile('(<br[^>]*>[ \n\r\t]*){2,}',re.I),
|
|
|
|
#'replaceFontsRe': re.compile('<(\/?)font[^>]*>',re.I),
|
|
|
|
#'trimRe': re.compile('^\s+|\s+$/'),
|
|
|
|
#'normalizeRe': re.compile('\s{2,}/'),
|
|
|
|
#'killBreaksRe': re.compile('(<br\s*\/?>(\s| ?)*){1,}/'),
|
|
|
|
#'videoRe': re.compile('http:\/\/(www\.)?(youtube|vimeo)\.com', re.I),
|
|
|
|
#skipFootnoteLink: /^\s*(\[?[a-z0-9]{1,2}\]?|^|edit|citation needed)\s*$/i,
|
2010-04-22 11:55:00 +00:00
|
|
|
}
|
|
|
|
|
2012-04-17 01:23:19 +00:00
|
|
|
|
|
|
|
class Unparseable(ValueError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2011-06-01 05:16:32 +00:00
|
|
|
def describe(node, depth=1):
|
2012-04-16 21:13:24 +00:00
|
|
|
if not hasattr(node, 'tag'):
|
|
|
|
return "[%s]" % type(node)
|
|
|
|
name = node.tag
|
2012-04-17 01:23:19 +00:00
|
|
|
if node.get('id', ''):
|
|
|
|
name += '#' + node.get('id')
|
2012-04-16 21:13:24 +00:00
|
|
|
if node.get('class', ''):
|
2012-04-17 01:23:19 +00:00
|
|
|
name += '.' + node.get('class').replace(' ', '.')
|
2012-04-16 21:13:24 +00:00
|
|
|
if name[:4] in ['div#', 'div.']:
|
|
|
|
name = name[3:]
|
|
|
|
if depth and node.getparent() is not None:
|
2012-04-17 01:23:19 +00:00
|
|
|
return name + ' - ' + describe(node.getparent(), depth - 1)
|
2012-04-16 21:13:24 +00:00
|
|
|
return name
|
2011-05-03 04:34:29 +00:00
|
|
|
|
2012-04-17 01:23:19 +00:00
|
|
|
|
2011-05-11 12:58:27 +00:00
|
|
|
def to_int(x):
|
2012-04-17 01:23:19 +00:00
|
|
|
if not x:
|
|
|
|
return None
|
2012-04-16 21:13:24 +00:00
|
|
|
x = x.strip()
|
|
|
|
if x.endswith('px'):
|
|
|
|
return int(x[:-2])
|
|
|
|
if x.endswith('em'):
|
|
|
|
return int(x[:-2]) * 12
|
|
|
|
return int(x)
|
2011-05-11 12:58:27 +00:00
|
|
|
|
2012-04-17 01:23:19 +00:00
|
|
|
|
2011-06-01 05:16:32 +00:00
|
|
|
def clean(text):
|
2012-04-16 21:13:24 +00:00
|
|
|
text = re.sub('\s*\n\s*', '\n', text)
|
|
|
|
text = re.sub('[ \t]{2,}', ' ', text)
|
|
|
|
return text.strip()
|
2011-06-01 05:16:32 +00:00
|
|
|
|
2012-04-17 01:23:19 +00:00
|
|
|
|
2011-06-01 05:16:32 +00:00
|
|
|
def text_length(i):
|
2012-04-16 21:13:24 +00:00
|
|
|
return len(clean(i.text_content() or ""))
|
2011-06-01 05:16:32 +00:00
|
|
|
|
2010-04-30 14:07:30 +00:00
|
|
|
|
2010-04-22 11:55:00 +00:00
|
|
|
class Document:
|
2012-04-17 01:23:19 +00:00
|
|
|
"""Class to build a etree document out of html."""
|
2012-04-16 21:13:24 +00:00
|
|
|
TEXT_LENGTH_THRESHOLD = 25
|
|
|
|
RETRY_LENGTH = 250
|
|
|
|
|
|
|
|
def __init__(self, input, **options):
|
2012-04-17 01:23:19 +00:00
|
|
|
"""Generate the document
|
|
|
|
|
|
|
|
:param input: string of the html content.
|
|
|
|
|
|
|
|
kwargs:
|
|
|
|
- attributes:
|
|
|
|
- debug: output debug messages
|
|
|
|
- min_text_length:
|
|
|
|
- retry_length:
|
|
|
|
- url: will allow adjusting links to be absolute
|
|
|
|
|
|
|
|
"""
|
2012-04-16 21:13:24 +00:00
|
|
|
self.input = input
|
2012-04-17 01:23:19 +00:00
|
|
|
self.options = options
|
2012-04-16 21:13:24 +00:00
|
|
|
self.html = None
|
|
|
|
|
|
|
|
def _html(self, force=False):
|
|
|
|
if force or self.html is None:
|
|
|
|
self.html = self._parse(self.input)
|
|
|
|
return self.html
|
|
|
|
|
|
|
|
def _parse(self, input):
|
|
|
|
doc = build_doc(input)
|
|
|
|
doc = html_cleaner.clean_html(doc)
|
2012-04-17 01:23:19 +00:00
|
|
|
base_href = self.options.get('url', None)
|
2012-04-16 21:13:24 +00:00
|
|
|
if base_href:
|
|
|
|
doc.make_links_absolute(base_href, resolve_base_href=True)
|
|
|
|
else:
|
|
|
|
doc.resolve_base_href()
|
|
|
|
return doc
|
|
|
|
|
|
|
|
def content(self):
|
|
|
|
return get_body(self._html(True))
|
|
|
|
|
|
|
|
def title(self):
|
|
|
|
return get_title(self._html(True))
|
|
|
|
|
|
|
|
def short_title(self):
|
|
|
|
return shorten_title(self._html(True))
|
|
|
|
|
|
|
|
def summary(self, document_only=False):
|
2012-04-17 01:23:19 +00:00
|
|
|
"""Generate the summary of the html docuemnt
|
|
|
|
|
|
|
|
:param document_only: return only the div of the document, don't wrap
|
|
|
|
in html and body tags.
|
|
|
|
|
|
|
|
"""
|
2012-04-16 21:13:24 +00:00
|
|
|
try:
|
|
|
|
ruthless = True
|
|
|
|
while True:
|
|
|
|
self._html(True)
|
|
|
|
for i in self.tags(self.html, 'script', 'style'):
|
|
|
|
i.drop_tree()
|
|
|
|
for i in self.tags(self.html, 'body'):
|
|
|
|
i.set('id', 'readabilityBody')
|
|
|
|
if ruthless:
|
|
|
|
self.remove_unlikely_candidates()
|
|
|
|
self.transform_misused_divs_into_paragraphs()
|
|
|
|
candidates = self.score_paragraphs()
|
|
|
|
|
|
|
|
best_candidate = self.select_best_candidate(candidates)
|
|
|
|
|
|
|
|
if best_candidate:
|
2012-04-17 00:55:13 +00:00
|
|
|
article = self.get_article(candidates, best_candidate,
|
|
|
|
document_only=document_only)
|
2012-04-16 21:13:24 +00:00
|
|
|
else:
|
|
|
|
if ruthless:
|
2012-04-17 01:23:19 +00:00
|
|
|
log.debug("ruthless removal did not work. ")
|
2012-04-16 21:13:24 +00:00
|
|
|
ruthless = False
|
2012-04-17 01:23:19 +00:00
|
|
|
self.debug(
|
|
|
|
("ended up stripping too much - "
|
|
|
|
"going for a safer _parse"))
|
2012-04-16 21:13:24 +00:00
|
|
|
# try again
|
|
|
|
continue
|
|
|
|
else:
|
2012-04-17 01:23:19 +00:00
|
|
|
log.debug(
|
|
|
|
("Ruthless and lenient parsing did not work. "
|
|
|
|
"Returning raw html"))
|
2012-04-16 21:13:24 +00:00
|
|
|
article = self.html.find('body')
|
|
|
|
if article is None:
|
|
|
|
article = self.html
|
|
|
|
cleaned_article = self.sanitize(article, candidates)
|
2012-04-17 01:23:19 +00:00
|
|
|
article_length = len(cleaned_article or '')
|
|
|
|
retry_length = self.options.get(
|
|
|
|
'retry_length',
|
|
|
|
self.RETRY_LENGTH)
|
|
|
|
of_acceptable_length = article_length >= retry_length
|
2012-04-16 21:13:24 +00:00
|
|
|
if ruthless and not of_acceptable_length:
|
|
|
|
ruthless = False
|
2012-04-17 01:23:19 +00:00
|
|
|
# Loop through and try again.
|
|
|
|
continue
|
2012-04-16 21:13:24 +00:00
|
|
|
else:
|
|
|
|
return cleaned_article
|
|
|
|
except StandardError, e:
|
2012-04-17 01:23:19 +00:00
|
|
|
log.exception('error getting summary: ')
|
2012-04-16 21:13:24 +00:00
|
|
|
raise Unparseable(str(e)), None, sys.exc_info()[2]
|
|
|
|
|
2012-04-17 00:55:13 +00:00
|
|
|
def get_article(self, candidates, best_candidate, document_only=False):
|
2012-04-17 01:23:19 +00:00
|
|
|
# Now that we have the top candidate, look through its siblings for
|
|
|
|
# content that might also be related.
|
2012-04-16 21:13:24 +00:00
|
|
|
# Things like preambles, content split by ads that we removed, etc.
|
2012-04-17 01:23:19 +00:00
|
|
|
sibling_score_threshold = max([
|
|
|
|
10,
|
|
|
|
best_candidate['content_score'] * 0.2])
|
2012-04-17 00:55:13 +00:00
|
|
|
# create a new html document with a html->body->div
|
|
|
|
if document_only:
|
|
|
|
output = fragment_fromstring('<div/>')
|
|
|
|
else:
|
|
|
|
output = document_fromstring('<div/>')
|
2012-04-16 21:13:24 +00:00
|
|
|
best_elem = best_candidate['elem']
|
|
|
|
for sibling in best_elem.getparent().getchildren():
|
2012-04-17 01:23:19 +00:00
|
|
|
# in lxml there no concept of simple text
|
|
|
|
# if isinstance(sibling, NavigableString): continue
|
2012-04-16 21:13:24 +00:00
|
|
|
append = False
|
|
|
|
if sibling is best_elem:
|
|
|
|
append = True
|
2012-04-17 01:23:19 +00:00
|
|
|
sibling_key = sibling # HashableElement(sibling)
|
|
|
|
if sibling_key in candidates and \
|
|
|
|
candidates[sibling_key]['content_score'] >= sibling_score_threshold:
|
2012-04-16 21:13:24 +00:00
|
|
|
append = True
|
|
|
|
|
|
|
|
if sibling.tag == "p":
|
|
|
|
link_density = self.get_link_density(sibling)
|
|
|
|
node_content = sibling.text or ""
|
|
|
|
node_length = len(node_content)
|
|
|
|
|
|
|
|
if node_length > 80 and link_density < 0.25:
|
|
|
|
append = True
|
2012-04-17 01:23:19 +00:00
|
|
|
elif node_length <= 80 \
|
|
|
|
and link_density == 0 \
|
|
|
|
and re.search('\.( |$)', node_content):
|
2012-04-16 21:13:24 +00:00
|
|
|
append = True
|
|
|
|
|
|
|
|
if append:
|
2012-04-17 00:55:13 +00:00
|
|
|
# We don't want to append directly to output, but the div
|
|
|
|
# in html->body->div
|
|
|
|
if document_only:
|
|
|
|
output.append(sibling)
|
|
|
|
else:
|
|
|
|
output.getchildren()[0].getchildren()[0].append(sibling)
|
2012-04-16 21:13:24 +00:00
|
|
|
#if output is not None:
|
|
|
|
# output.append(best_elem)
|
|
|
|
return output
|
|
|
|
|
|
|
|
def select_best_candidate(self, candidates):
|
|
|
|
sorted_candidates = sorted(candidates.values(), key=lambda x: x['content_score'], reverse=True)
|
|
|
|
for candidate in sorted_candidates[:5]:
|
|
|
|
elem = candidate['elem']
|
2012-04-17 01:23:19 +00:00
|
|
|
self.debug("Top 5 : %6.3f %s" % (
|
|
|
|
candidate['content_score'],
|
|
|
|
describe(elem)))
|
2012-04-16 21:13:24 +00:00
|
|
|
|
|
|
|
if len(sorted_candidates) == 0:
|
|
|
|
return None
|
|
|
|
|
|
|
|
best_candidate = sorted_candidates[0]
|
|
|
|
return best_candidate
|
|
|
|
|
|
|
|
def get_link_density(self, elem):
|
|
|
|
link_length = 0
|
|
|
|
for i in elem.findall(".//a"):
|
|
|
|
link_length += text_length(i)
|
|
|
|
#if len(elem.findall(".//div") or elem.findall(".//p")):
|
|
|
|
# link_length = link_length
|
|
|
|
total_length = text_length(elem)
|
|
|
|
return float(link_length) / max(total_length, 1)
|
|
|
|
|
|
|
|
def score_paragraphs(self, ):
|
2012-04-17 01:23:19 +00:00
|
|
|
MIN_LEN = self.options.get(
|
|
|
|
'min_text_length',
|
|
|
|
self.TEXT_LENGTH_THRESHOLD)
|
2012-04-16 21:13:24 +00:00
|
|
|
candidates = {}
|
|
|
|
ordered = []
|
|
|
|
for elem in self.tags(self._html(), "p", "pre", "td"):
|
|
|
|
parent_node = elem.getparent()
|
|
|
|
if parent_node is None:
|
|
|
|
continue
|
|
|
|
grand_parent_node = parent_node.getparent()
|
|
|
|
|
|
|
|
inner_text = clean(elem.text_content() or "")
|
|
|
|
inner_text_len = len(inner_text)
|
|
|
|
|
2012-04-17 01:23:19 +00:00
|
|
|
# If this paragraph is less than 25 characters
|
|
|
|
# don't even count it.
|
2012-04-16 21:13:24 +00:00
|
|
|
if inner_text_len < MIN_LEN:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if parent_node not in candidates:
|
|
|
|
candidates[parent_node] = self.score_node(parent_node)
|
|
|
|
ordered.append(parent_node)
|
|
|
|
|
|
|
|
if grand_parent_node is not None and grand_parent_node not in candidates:
|
2012-04-17 01:23:19 +00:00
|
|
|
candidates[grand_parent_node] = self.score_node(
|
|
|
|
grand_parent_node)
|
2012-04-16 21:13:24 +00:00
|
|
|
ordered.append(grand_parent_node)
|
|
|
|
|
|
|
|
content_score = 1
|
|
|
|
content_score += len(inner_text.split(','))
|
|
|
|
content_score += min((inner_text_len / 100), 3)
|
|
|
|
#if elem not in candidates:
|
|
|
|
# candidates[elem] = self.score_node(elem)
|
|
|
|
|
|
|
|
#WTF? candidates[elem]['content_score'] += content_score
|
|
|
|
candidates[parent_node]['content_score'] += content_score
|
|
|
|
if grand_parent_node is not None:
|
|
|
|
candidates[grand_parent_node]['content_score'] += content_score / 2.0
|
|
|
|
|
2012-04-17 01:23:19 +00:00
|
|
|
# Scale the final candidates score based on link density. Good content
|
|
|
|
# should have a relatively small link density (5% or less) and be
|
|
|
|
# mostly unaffected by this operation.
|
2012-04-16 21:13:24 +00:00
|
|
|
for elem in ordered:
|
|
|
|
candidate = candidates[elem]
|
|
|
|
ld = self.get_link_density(elem)
|
|
|
|
score = candidate['content_score']
|
2012-04-17 01:23:19 +00:00
|
|
|
self.debug("Candid: %6.3f %s link density %.3f -> %6.3f" % (
|
|
|
|
score,
|
|
|
|
describe(elem),
|
|
|
|
ld,
|
|
|
|
score * (1 - ld)))
|
2012-04-16 21:13:24 +00:00
|
|
|
candidate['content_score'] *= (1 - ld)
|
|
|
|
|
|
|
|
return candidates
|
|
|
|
|
|
|
|
def class_weight(self, e):
|
|
|
|
weight = 0
|
|
|
|
if e.get('class', None):
|
|
|
|
if REGEXES['negativeRe'].search(e.get('class')):
|
|
|
|
weight -= 25
|
|
|
|
|
|
|
|
if REGEXES['positiveRe'].search(e.get('class')):
|
|
|
|
weight += 25
|
|
|
|
|
|
|
|
if e.get('id', None):
|
|
|
|
if REGEXES['negativeRe'].search(e.get('id')):
|
|
|
|
weight -= 25
|
|
|
|
|
|
|
|
if REGEXES['positiveRe'].search(e.get('id')):
|
|
|
|
weight += 25
|
|
|
|
|
|
|
|
return weight
|
|
|
|
|
|
|
|
def score_node(self, elem):
|
|
|
|
content_score = self.class_weight(elem)
|
|
|
|
name = elem.tag.lower()
|
|
|
|
if name == "div":
|
|
|
|
content_score += 5
|
|
|
|
elif name in ["pre", "td", "blockquote"]:
|
|
|
|
content_score += 3
|
|
|
|
elif name in ["address", "ol", "ul", "dl", "dd", "dt", "li", "form"]:
|
|
|
|
content_score -= 3
|
|
|
|
elif name in ["h1", "h2", "h3", "h4", "h5", "h6", "th"]:
|
|
|
|
content_score -= 5
|
|
|
|
return {
|
|
|
|
'content_score': content_score,
|
|
|
|
'elem': elem
|
|
|
|
}
|
|
|
|
|
|
|
|
def debug(self, *a):
|
2012-04-17 01:23:19 +00:00
|
|
|
if self.options.get('debug', False):
|
|
|
|
log.debug(*a)
|
2012-04-16 21:13:24 +00:00
|
|
|
|
|
|
|
def remove_unlikely_candidates(self):
|
|
|
|
for elem in self.html.iter():
|
|
|
|
s = "%s %s" % (elem.get('class', ''), elem.get('id', ''))
|
|
|
|
if len(s) < 2:
|
|
|
|
continue
|
|
|
|
#self.debug(s)
|
|
|
|
if REGEXES['unlikelyCandidatesRe'].search(s) and (not REGEXES['okMaybeItsACandidateRe'].search(s)) and elem.tag != 'body':
|
|
|
|
self.debug("Removing unlikely candidate - %s" % describe(elem))
|
|
|
|
elem.drop_tree()
|
|
|
|
|
|
|
|
def transform_misused_divs_into_paragraphs(self):
|
|
|
|
for elem in self.tags(self.html, 'div'):
|
2012-04-17 01:23:19 +00:00
|
|
|
# transform <div>s that do not contain other block elements into
|
|
|
|
# <p>s
|
|
|
|
#FIXME: The current implementation ignores all descendants that
|
|
|
|
# are not direct children of elem
|
|
|
|
# This results in incorrect results in case there is an <img>
|
|
|
|
# buried within an <a> for example
|
|
|
|
if not REGEXES['divToPElementsRe'].search(
|
|
|
|
unicode(''.join(map(tostring, list(elem))))):
|
2012-04-16 21:13:24 +00:00
|
|
|
#self.debug("Altering %s to p" % (describe(elem)))
|
|
|
|
elem.tag = "p"
|
|
|
|
#print "Fixed element "+describe(elem)
|
|
|
|
|
|
|
|
for elem in self.tags(self.html, 'div'):
|
|
|
|
if elem.text and elem.text.strip():
|
|
|
|
p = fragment_fromstring('<p/>')
|
|
|
|
p.text = elem.text
|
|
|
|
elem.text = None
|
|
|
|
elem.insert(0, p)
|
|
|
|
#print "Appended "+tounicode(p)+" to "+describe(elem)
|
|
|
|
|
|
|
|
for pos, child in reversed(list(enumerate(elem))):
|
|
|
|
if child.tail and child.tail.strip():
|
|
|
|
p = fragment_fromstring('<p/>')
|
|
|
|
p.text = child.tail
|
|
|
|
child.tail = None
|
|
|
|
elem.insert(pos + 1, p)
|
|
|
|
#print "Inserted "+tounicode(p)+" to "+describe(elem)
|
|
|
|
if child.tag == 'br':
|
|
|
|
#print 'Dropped <br> at '+describe(elem)
|
|
|
|
child.drop_tree()
|
|
|
|
|
|
|
|
def tags(self, node, *tag_names):
|
|
|
|
for tag_name in tag_names:
|
|
|
|
for e in node.findall('.//%s' % tag_name):
|
|
|
|
yield e
|
|
|
|
|
|
|
|
def reverse_tags(self, node, *tag_names):
|
|
|
|
for tag_name in tag_names:
|
|
|
|
for e in reversed(node.findall('.//%s' % tag_name)):
|
|
|
|
yield e
|
|
|
|
|
|
|
|
def sanitize(self, node, candidates):
|
2012-04-17 01:23:19 +00:00
|
|
|
MIN_LEN = self.options.get('min_text_length',
|
|
|
|
self.TEXT_LENGTH_THRESHOLD)
|
2012-04-16 21:13:24 +00:00
|
|
|
for header in self.tags(node, "h1", "h2", "h3", "h4", "h5", "h6"):
|
|
|
|
if self.class_weight(header) < 0 or self.get_link_density(header) > 0.33:
|
|
|
|
header.drop_tree()
|
|
|
|
|
|
|
|
for elem in self.tags(node, "form", "iframe", "textarea"):
|
|
|
|
elem.drop_tree()
|
|
|
|
allowed = {}
|
|
|
|
# Conditionally clean <table>s, <ul>s, and <div>s
|
|
|
|
for el in self.reverse_tags(node, "table", "ul", "div"):
|
|
|
|
if el in allowed:
|
|
|
|
continue
|
|
|
|
weight = self.class_weight(el)
|
|
|
|
if el in candidates:
|
|
|
|
content_score = candidates[el]['content_score']
|
|
|
|
#print '!',el, '-> %6.3f' % content_score
|
|
|
|
else:
|
|
|
|
content_score = 0
|
|
|
|
tag = el.tag
|
|
|
|
|
|
|
|
if weight + content_score < 0:
|
|
|
|
self.debug("Cleaned %s with score %6.3f and weight %-3s" %
|
|
|
|
(describe(el), content_score, weight, ))
|
|
|
|
el.drop_tree()
|
|
|
|
elif el.text_content().count(",") < 10:
|
|
|
|
counts = {}
|
|
|
|
for kind in ['p', 'img', 'li', 'a', 'embed', 'input']:
|
2012-04-17 01:23:19 +00:00
|
|
|
counts[kind] = len(el.findall('.//%s' % kind))
|
2012-04-16 21:13:24 +00:00
|
|
|
counts["li"] -= 100
|
|
|
|
|
2012-04-17 01:23:19 +00:00
|
|
|
# Count the text length excluding any surrounding whitespace
|
|
|
|
content_length = text_length(el)
|
2012-04-16 21:13:24 +00:00
|
|
|
link_density = self.get_link_density(el)
|
|
|
|
parent_node = el.getparent()
|
|
|
|
if parent_node is not None:
|
|
|
|
if parent_node in candidates:
|
|
|
|
content_score = candidates[parent_node]['content_score']
|
|
|
|
else:
|
|
|
|
content_score = 0
|
|
|
|
#if parent_node is not None:
|
|
|
|
#pweight = self.class_weight(parent_node) + content_score
|
|
|
|
#pname = describe(parent_node)
|
|
|
|
#else:
|
|
|
|
#pweight = 0
|
|
|
|
#pname = "no parent"
|
|
|
|
to_remove = False
|
|
|
|
reason = ""
|
|
|
|
|
|
|
|
#if el.tag == 'div' and counts["img"] >= 1:
|
|
|
|
# continue
|
|
|
|
if counts["p"] and counts["img"] > counts["p"]:
|
|
|
|
reason = "too many images (%s)" % counts["img"]
|
|
|
|
to_remove = True
|
|
|
|
elif counts["li"] > counts["p"] and tag != "ul" and tag != "ol":
|
|
|
|
reason = "more <li>s than <p>s"
|
|
|
|
to_remove = True
|
|
|
|
elif counts["input"] > (counts["p"] / 3):
|
|
|
|
reason = "less than 3x <p>s than <input>s"
|
|
|
|
to_remove = True
|
|
|
|
elif content_length < (MIN_LEN) and (counts["img"] == 0 or counts["img"] > 2):
|
|
|
|
reason = "too short content length %s without a single image" % content_length
|
|
|
|
to_remove = True
|
|
|
|
elif weight < 25 and link_density > 0.2:
|
2012-04-17 01:23:19 +00:00
|
|
|
reason = "too many links %.3f for its weight %s" % (
|
|
|
|
link_density, weight)
|
2012-04-16 21:13:24 +00:00
|
|
|
to_remove = True
|
|
|
|
elif weight >= 25 and link_density > 0.5:
|
2012-04-17 01:23:19 +00:00
|
|
|
reason = "too many links %.3f for its weight %s" % (
|
|
|
|
link_density, weight)
|
2012-04-16 21:13:24 +00:00
|
|
|
to_remove = True
|
|
|
|
elif (counts["embed"] == 1 and content_length < 75) or counts["embed"] > 1:
|
|
|
|
reason = "<embed>s with too short content length, or too many <embed>s"
|
|
|
|
to_remove = True
|
|
|
|
# if el.tag == 'div' and counts['img'] >= 1 and to_remove:
|
|
|
|
# imgs = el.findall('.//img')
|
|
|
|
# valid_img = False
|
|
|
|
# self.debug(tounicode(el))
|
|
|
|
# for img in imgs:
|
2011-06-01 05:16:32 +00:00
|
|
|
#
|
2012-04-16 21:13:24 +00:00
|
|
|
# height = img.get('height')
|
|
|
|
# text_length = img.get('text_length')
|
|
|
|
# self.debug ("height %s text_length %s" %(repr(height), repr(text_length)))
|
|
|
|
# if to_int(height) >= 100 or to_int(text_length) >= 100:
|
|
|
|
# valid_img = True
|
|
|
|
# self.debug("valid image" + tounicode(img))
|
|
|
|
# break
|
|
|
|
# if valid_img:
|
|
|
|
# to_remove = False
|
|
|
|
# self.debug("Allowing %s" %el.text_content())
|
|
|
|
# for desnode in self.tags(el, "table", "ul", "div"):
|
|
|
|
# allowed[desnode] = True
|
|
|
|
|
|
|
|
#find x non empty preceding and succeeding siblings
|
|
|
|
i, j = 0, 0
|
2012-04-17 01:23:19 +00:00
|
|
|
x = 1
|
2012-04-16 21:13:24 +00:00
|
|
|
siblings = []
|
|
|
|
for sib in el.itersiblings():
|
|
|
|
#self.debug(sib.text_content())
|
|
|
|
sib_content_length = text_length(sib)
|
|
|
|
if sib_content_length:
|
|
|
|
i =+ 1
|
|
|
|
siblings.append(sib_content_length)
|
|
|
|
if i == x:
|
|
|
|
break
|
|
|
|
for sib in el.itersiblings(preceding=True):
|
|
|
|
#self.debug(sib.text_content())
|
|
|
|
sib_content_length = text_length(sib)
|
|
|
|
if sib_content_length:
|
|
|
|
j =+ 1
|
|
|
|
siblings.append(sib_content_length)
|
|
|
|
if j == x:
|
|
|
|
break
|
|
|
|
#self.debug(str(siblings))
|
2012-04-17 01:23:19 +00:00
|
|
|
if siblings and sum(siblings) > 1000:
|
2012-04-16 21:13:24 +00:00
|
|
|
to_remove = False
|
|
|
|
self.debug("Allowing %s" % describe(el))
|
|
|
|
for desnode in self.tags(el, "table", "ul", "div"):
|
|
|
|
allowed[desnode] = True
|
|
|
|
|
|
|
|
if to_remove:
|
|
|
|
self.debug("Cleaned %6.3f %s with weight %s cause it has %s." %
|
|
|
|
(content_score, describe(el), weight, reason))
|
|
|
|
#print tounicode(el)
|
|
|
|
#self.debug("pname %s pweight %.3f" %(pname, pweight))
|
|
|
|
el.drop_tree()
|
|
|
|
|
|
|
|
for el in ([node] + [n for n in node.iter()]):
|
2012-04-17 01:23:19 +00:00
|
|
|
if not self.options.get('attributes', None):
|
2012-04-16 21:13:24 +00:00
|
|
|
#el.attrib = {} #FIXME:Checkout the effects of disabling this
|
|
|
|
pass
|
2012-04-17 00:55:13 +00:00
|
|
|
|
2012-04-16 21:13:24 +00:00
|
|
|
return clean_attributes(tounicode(node))
|
|
|
|
|
2010-04-22 11:55:00 +00:00
|
|
|
|
|
|
|
class HashableElement():
|
2012-04-16 21:13:24 +00:00
|
|
|
def __init__(self, node):
|
|
|
|
self.node = node
|
|
|
|
self._path = None
|
|
|
|
|
|
|
|
def _get_path(self):
|
|
|
|
if self._path is None:
|
|
|
|
reverse_path = []
|
|
|
|
node = self.node
|
|
|
|
while node is not None:
|
|
|
|
node_id = (node.tag, tuple(node.attrib.items()), node.text)
|
|
|
|
reverse_path.append(node_id)
|
|
|
|
node = node.getparent()
|
|
|
|
self._path = tuple(reverse_path)
|
|
|
|
return self._path
|
|
|
|
path = property(_get_path)
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
return hash(self.path)
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
return self.path == other.path
|
|
|
|
|
|
|
|
def __getattr__(self, tag):
|
|
|
|
return getattr(self.node, tag)
|
2010-04-22 11:55:00 +00:00
|
|
|
|
2012-04-17 01:23:19 +00:00
|
|
|
|
2010-04-22 11:55:00 +00:00
|
|
|
def main():
|
2012-04-16 21:13:24 +00:00
|
|
|
from optparse import OptionParser
|
|
|
|
parser = OptionParser(usage="%prog: [options] [file]")
|
|
|
|
parser.add_option('-v', '--verbose', action='store_true')
|
2012-04-17 01:23:19 +00:00
|
|
|
parser.add_option('-u', '--url', default=None, help="use URL instead of a local file")
|
2012-04-16 21:13:24 +00:00
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
|
|
|
if not (len(args) == 1 or options.url):
|
|
|
|
parser.print_help()
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
file = None
|
|
|
|
if options.url:
|
|
|
|
import urllib
|
|
|
|
file = urllib.urlopen(options.url)
|
|
|
|
else:
|
|
|
|
file = open(args[0], 'rt')
|
|
|
|
enc = sys.__stdout__.encoding or 'utf-8'
|
|
|
|
try:
|
2012-04-17 01:23:19 +00:00
|
|
|
print Document(file.read(),
|
|
|
|
debug=options.verbose,
|
|
|
|
url=options.url).summary().encode(enc, 'replace')
|
2012-04-16 21:13:24 +00:00
|
|
|
finally:
|
|
|
|
file.close()
|
2010-04-22 11:55:00 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2012-04-16 21:13:24 +00:00
|
|
|
main()
|