美文网首页
BeautifulSoup简单使用

BeautifulSoup简单使用

作者: slytherinwyne | 来源:发表于2020-01-17 18:40 被阅读0次

    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')

    相关文章

      网友评论

          本文标题:BeautifulSoup简单使用

          本文链接:https://www.haomeiwen.com/subject/aschzctx.html