html.parser python_在Python 3.2使用的HTMLParser

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.

解决方案

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.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值