2022-11-13 10:39:28 -08:00

4 lines
132 B
Python

>>> from bs4 import BeautifulSoup
>>> html = '<p>lorem<sup class="reference">1</sup></p><p>ipsum</p>'
>>> doc = BeautifulSoup(html)