Find a specific tag with BeautifulSoup

后端 未结 2 1224
野性不改
野性不改 2020-12-09 15:51

I can traverse generic tags easily with BS, but I don\'t know how to find specific tags. For example, how can I find all occurances of

2条回答
  •  南方客
    南方客 (楼主)
    2020-12-09 16:55

    The following should work

    soup = BeautifulSoup(htmlstring)
    soup.findAll('div', style="width=300px;")
    

    There are couple of ways to search for tags.

    • http://www.crummy.com/software/BeautifulSoup/documentation.html

    For more text to understand and use it

    • http://lxml.de/elementsoup.html

提交回复
热议问题