class Post:
def __init__(self, html: BeautifulSoup) -> None:
self._html = html
+ for eb in self._html.find_all("div", class_="post-edit-box"):
+ eb.decompose()
+ for footer in self._html.find_all("div", class_="post-footer"):
+ footer.decompose()
def text(self) -> Tag:
body = self._html.body