From f925e3ef0504262392a3eba2fa41f38aee5997c6 Mon Sep 17 00:00:00 2001 From: Yuri Baburov Date: Mon, 2 May 2011 21:45:23 -0700 Subject: [PATCH] Corrected README --- README | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/README b/README index f7b86b3..f872ae6 100644 --- a/README +++ b/README @@ -4,20 +4,12 @@ This is a python port of a ruby port of arc90's readability project http://lab.arc90.com/experiments/readability/ +In few words, Given a html document, it pulls out the main body text and cleans it up. +It also can clean up title based on latest readability.js code. -Ruby port by starrhorne and iterationlabs -Python port by gfxmonk - -This port uses BeautifulSoup for the HTML parsing. That means it can be -a little slow, but will work on Google App Engine (unlike libxml-based -libraries) - - -**note**: I don't currently have any plans for using or improving this -library, and it's far from perfect (slow, and almost certainly buggy). -So if you do something cool with it or have a better tool that does -the same job, please let me know and I can link to it from here. - -If you're looking for alternatives, here's the list so far: - - http://www.minvolai.com/blog/decruft-arc90s-readability-in-python/ +Based on: + - Latest readability.js ( https://github.com/MHordecki/readability-redux/blob/master/readability/readability.js ) + - Ruby port by starrhorne and iterationlabs + - Python port by gfxmonk ( https://github.com/gfxmonk/python-readability , based on BeautifulSoup ) + - Decruft effort to move to lxml ( http://www.minvolai.com/blog/decruft-arc90s-readability-in-python/ )