Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rodricios/eatiht

An exercise in unsupervised machine learning: Extract Article's Text in HTml documents.
https://github.com/rodricios/eatiht

Last synced: about 1 month ago
JSON representation

An exercise in unsupervised machine learning: Extract Article's Text in HTml documents.

Awesome Lists containing this project

README

        

A word about this repo
----------------------

[@eugene-eeo](https://github.com/eugene-eeo) and I are reimagining web data extraction: [libextract](https://github.com/libextract/libextract). It supports not only article extraction, but also tabular data extraction!

That said, it's very unlikely that I will be pushing any updates to this branch, but I will continue to accept pull requests.

Hope to see you at [libextract](https://github.com/libextract/libextract),

[Rodrigo](https://twitter.com/rodricios) :)

eatiht
======

A python package for **e**xtracting **a**rticle **t**ext **i**n **ht**ml documents. Check out the new twitter-bootstrap-ready [demo](http://retext.us/extract?url=http://phys.org/news/2014-12-faster-than-light-particles.html) produced by the new extraction algorithm!

###Latest News

Check out my latest project: [autocomplete - a kid and adult friendly exercise in machine learning](https://github.com/rodricios/autocomplete)

I'm collaborating with [Tim Weninger](http://www3.nd.edu/~tweninge/) in a must-read data-driven opinion piece (publish date is tba). I benchmarked Eatiht and many more content extractors; you can follow the [current work here!](https://github.com/rodricios/crawl-to-the-future).

Read [Matthew Peters's](https://github.com/matt-peters) article that benchmarked Eatiht, along with few other content extractors written in Python.

Follow me on [twitter](https://twitter.com/rodricios) :)

###What people have been saying

*You should write a paper on this work* - [/u/queue_cumber](http://www.reddit.com/r/compsci/comments/2ppyot/just_made_what_i_consider_my_first_algorithm_it/cmz0vfj)

*This is neat-o. A short and sweet project...* - [/u/CandyCorns_](http://www.reddit.com/r/compsci/comments/2ppyot/just_made_what_i_consider_my_first_algorithm_it/cmz17gv)

*This is both useful and shows a simple use case for data mining for the general population - an outreach of sorts.* - [/u/tweninger](http://www.reddit.com/r/compsci/comments/2ppyot/just_made_what_i_consider_my_first_algorithm_it/cmzai6s)

At a Glance
-----------

#### To install:

```bash
pip install eatiht
...
easy_install eatiht
```

Note: On Windows, you may need to install lxml manually using:
pip install lxml

#### Using in Python

Currently, there are two new submodules:

* etv2.py - class-based approach

* v2.py - script-like approach

As [requested](https://github.com/rodricios/eatiht/issues/3), etv2.extract will extract not only the text, but also the parent element's html:

```python
import eatiht.etv2 as etv2

url = "http://sputniknews.com/middleeast/20141225/1016239222.html"

tree = etv2.extract(url)

# we know what this does...
# print tree.get_text()

# add necessary link tags to bootstrap cdn, center content, etc.
tree.bootstrapify()

print tree.get_html_string()
```
Output:
```
Syrian Army Kills Nearly 5,000 IS Militants in Three Months: Source / Sputnik International

Syrian Army Kills Nearly 5,000 IS Militants in Three Months: Source / Sputnik International

...
```

Now what about if that's rendered?

[With boostrap](http://web-tier-load-balancer-1502628209.us-west-2.elb.amazonaws.com/bootstrapify?url=http://sputniknews.com/middleeast/20141225/1016239222.html)

[Without](http://web-tier-load-balancer-1502628209.us-west-2.elb.amazonaws.com/backto95?url=http://sputniknews.com/middleeast/20141225/1016239222.html)

etv2 uses classes defined in [eatiht_trees.py](https://github.com/rodricios/eatiht/blob/master/eatiht/eatiht_trees.py) to construct what is sometimes known as the "state space" in the world of AI. But instead of only keeping track of averages and totals - as is required for the algorithm - the "state" class [TextNodeSubTree](https://github.com/rodricios/eatiht/blob/master/eatiht/eatiht_trees.py#L7) also keeps a reference to its original lxml.html element from whence it came.

You can access the original, extracted html elements like this:

```python
subtrees = tree.get_subtrees()

first_subtree = subtrees[0]

first_subtree.get_html()
#

first_subtree.get_html().tag
# 'div'
```

Please refer to [eatiht_trees.py](https://github.com/rodricios/eatiht/blob/master/eatiht/eatiht_trees.py) for more info on what functions are available for you to use.

v2 is functionally identical to the original eatiht:
```python
import eatiht.v2 as v2

url = 'http://www.washingtonpost.com/blogs/the-switch/wp/2014/12/26/elon-musk-the-new-tesla-roadster-can-travel-some-400-miles-on-a-single-charge/'

print v2.extract(url)
```
Output:
```
Car nerds, you just got an extra present under the tree.

Tesla announced Friday an upgrade for its Roadster, the electric car company’s convertible model,
and said that the new features significantly boost its range -- beyond what many traditional cars
can get on a tank of gasoline.
```

v2 contains one extra function that executes the extraction algorithm, but along with returning the text, it also returns the structures that were used to calculate the output (ie. histogram, list of xpaths, etc.):

```python
results = v2.extract_more(url)

results[0] # extracted text
results[1] # frequency distribution (histogram)
results[2] # subtrees (list of textnodes pre-filter)
results[3] # pruned subtrees
results[4] # list of paragraphs (as seperated in original website)
```

Now whether or not this function's output looks messy is up for debate; I personally think it looks messy and difficult to remember which index leads to what.

I suggest using this module if you simply want the extracted text.

And of course, there is the original:
```python
# from initial release
import eatiht

url = 'http://news.yahoo.com/curiosity-rover-drills-mars-rock-finds-water-122321635.html'

print eatiht.extract(url)
```
##### Output
```
NASA's Curiosity rover is continuing to help scientists piece together the mystery of how Mars
lost its surface water over the course of billions of years. The rover drilled into a piece of
Martian rock called Cumberland and found some ancient water hidden within it...
```

#### Using as a command line tool:
```bash
eatiht http://news.yahoo.com/curiosity-rover-drills-mars-rock-finds-water-122321635.html >> out.txt
```

Note: Window's users may have to add the C:\PythonXX\Scripts directory to your ["path"](http://www.computerhope.com/issues/ch000549.htm) so that the command line tool works from any directory, not only the ..\Scripts directory.

Requirements
------------
```
lxml
*requests, as of v0.1.0, is no longer required
```

Motivation
----------

After searching through the deepest crevices of the internet for some tool|library|module that could effectively extract the main content from a website (ignoring text from ads, sidebar links, etc.), I was slightly disheartened by the apparent ambiguity caused by this content-extraction problem.

My survey resulted in some of the following solutions:

* [boilerpipe](https://code.google.com/p/boilerpipe/) - *Boilerplate Removal and Fulltext Extraction from HTML pages*. Java library written by Christian Kohlschütter
* ["The Easy Way to Extract Useful Text from Arbitrary HTML"](http://ai-depot.com/articles/the-easy-way-to-extract-useful-text-from-arbitrary-html/) - a Python tutorial on implementing a neural network for html content extraction. Written by alexjc
* [Pyteaser's Cleaners module](https://github.com/xiaoxu193/PyTeaser/blob/master/goose/cleaners.py) - from what I can tell, it's a purely heuristic-based process
* ["Text Extraction from the Web via Text-to-Tag Ratio"](http://www.cse.nd.edu/~tweninge/pubs/WH_TIR08.pdf) - a thesis on Text-to-Tag-heuristic driven clustering as a solution for the problem at hand. Written by Tim Weninger & William H. Hsu

The number of research papers I found on the subject largely outweighs the number available open-source projects. This is my attempt at balancing out the disparity.

In the process of coming up with a solution, I made two unoriginal observations:

1. XPath's select all (//), parent node (..) queries and functions ('string-length') are remarkably powerful when used together
2. Unnecessary machine learning is unnecessary

By making an assumption on sentence length, and this is trivial, one can query for text-nodes satisfying said sentence length, then create a frequency distribution (histogram) across the parent-nodes, and the argmax of the resulting distribution is the xpath that is shared amongst likely sentences.

The results were surprisingly good. I personally prefer this approach to the others as it seems to lie somewhere in between the purely rule-based and the drowning-in-ML approaches.

Issues or Contact
-----------------

Please raise any [issues](https://github.com/rodricios/eatiht/issues) or yell at me at [email protected] or [@rodricios](https://twitter.com/rodricios)

Tests
-----
Currently, the tests are lacking. But please still run these tests to ensure that
modifications to eatiht.py, v2.py, and etv2.py run properly.
```python
python setup.py test
```

TODO:
-----

* ~~HTML-and-text extraction~~
* etv2 command line scripts
* ~~etv2.py tests~~
* improve filtering|pruning step so that taglines from articles get dropped
* if and only if tagline has a reference image, don't prune
* add some template engine (see "bootstrapify" function for current state)