Deleting a div with a particlular class using BeautifulSoup

后端 未结 4 1188
难免孤独
难免孤独 2020-12-09 02:02

I want to delete the specific div from soup object.
I am using python 2.7 and bs4.

According to documentati

4条回答
  •  清歌不尽
    2020-12-09 02:28

        from BeautifulSoup import BeautifulSoup
        >>> soup = BeautifulSoup('
    1
    2
    ') >>> for div in soup.findAll('div', 'comment'): ... div.extract() ...
    2
    >>> soup
    1

提交回复
热议问题