python htmlparser 怎么获取嵌套的节点
答案:1 悬赏:30 手机版
解决时间 2021-01-31 15:55
- 提问者网友:呐年旧曙光
- 2021-01-31 11:55
python htmlparser 怎么获取嵌套的节点
最佳答案
- 五星知识达人网友:话散在刀尖上
- 2021-01-31 12:41
通过htmlparser获取嵌套的节点
def handle_starttag(self, tag, attrs):
#print "Encountered the beginning of a %s tag" % tag
if tag == "a":
if len(attrs) == 0: pass
else:
for (variable, value) in attrs:
if variable == "href":
self.links.append(value)
用self.get_starttag_text()取出来<a href="www.google.com.hk">,取出test这个值
def handle_starttag(self, tag, attrs):
#print "Encountered the beginning of a %s tag" % tag
if tag == "a":
if len(attrs) == 0: pass
else:
for (variable, value) in attrs:
if variable == "href":
self.links.append(value)
用self.get_starttag_text()取出来<a href="www.google.com.hk">,取出test这个值
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯