BeautifulSoup简单使用

2020-01-17  本文已影响0人  slytherinwyne

from bs4import BeautifulSoup

html =open(file_path, 'r', encoding='utf-8')

bsObj = BeautifulSoup(html, 'lxml')

table = bsObj.find_all('table')

rows = table[0].find_all('tr')

上一篇下一篇

猜你喜欢

热点阅读