美文网首页
BeautifulSoup 库的使用

BeautifulSoup 库的使用

作者: 柠檬丸子 | 来源:发表于2017-09-20 22:40 被阅读0次

    用于解析、遍历、维护“标签树”的库
    用于解析html
    from bs4 import BeautifulSoup
    import request
    r=requests.get("http://www.baidu.com")
    demo=r.text #返回的是一个html的文件
    soup=BeautifulSoup(demo,'html.parser') #解析html信息

    另外一种方式 soup=BeautifulSoup(open('D://demo.html'),'html.parser'))

    tag=soup.a #找到a标签
    print(tag.attrs['class']) #查看a标签的属性信息
    print(tag.string)

    用这个网址测试:https://python123.io/ws/demo.html

    soup.title

    soup.a.parent.name

    soup.p.parent.name

    image.png image.png

    相关文章

      网友评论

          本文标题:BeautifulSoup 库的使用

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