4 lines
132 B
Python
4 lines
132 B
Python
>>> from bs4 import BeautifulSoup
|
|
>>> html = '<p>lorem<sup class="reference">1</sup></p><p>ipsum</p>'
|
|
>>> doc = BeautifulSoup(html)
|