Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using HTMLParser in Python 3.2

I have been using HTML Parser to scrapping data from websites and stripping html coding whilst doing so. I'm aware of various modules such as Beautiful Soup, but decided to go down the path of not depending on "outside" modules. There is a code code supplied by Eloff: Strip HTML from strings in Python

from HTMLParser import HTMLParser

class MLStripper(HTMLParser):
    def __init__(self):
        self.reset()
        self.fed = []
    def handle_data(self, d):
        self.fed.append(d)
    def get_data(self):
        return ''.join(self.fed)

def strip_tags(html):
    s = MLStripper()
    s.feed(html)
    return s.get_data()

It works in Python 3.1. However, I recently upgraded to Python 3.2.x and have found I get errors regarding the HTML Parser code as written above.

My first error points to the line:

s.feed(html)

... and the error says ...

AttributeError: 'MLStripper' object has no attribute 'strict'

So, after a bit of research, I add "strict=True" to the top line, making it...

class MLStripper(HTMLParser, strict=True)

However, I get the new error of:

TypeError: type() takes 1 or 3 arguments

To see what would happen, I removed the "self" argument and left in the "strict=True"... which gave up the error:

NameError: global name 'self' is not defined

... and I got the "I'm guessing on guesses" feeling.

I have no idea what the third argument in the class MLStripper(HTMLParser) line would be, after self and strict=True; research didn't toss any enlightenment.

like image 203
MilesNielsen Avatar asked Jun 16 '12 05:06

MilesNielsen


People also ask

Which parser creates valid html5 pages in Python?

html5lib: A pure-python library for parsing HTML. It is designed to conform to the WHATWG HTML specification, as is implemented by all major web browsers.


1 Answers

You're subclassing HTMLParser, but you aren't calling its __init__ method. You need to add one line to your __init__ method:

def __init__(self):
    super().__init__()
    self.reset()
    self.fed = []

Also, for Python 3, the import line is:

from html.parser import HTMLParser

With these changes, a simple example works. Don't change the class line, that's not related.

like image 139
Thomas K Avatar answered Oct 11 '22 16:10

Thomas K