Я пытаюсь почистить скрытый элемент (дату) на сайте с BeautifulSoup.Однако я продолжаю получать тип None или этот вывод: - .Любая помощь будет принята с благодарностью!
**This is how the relevant part looks on the website:**
<div class="by C C4">
<span class="hidden-lists">Oct 8, 2018</span>
**This is the relevant portion of my code:**
target_3 = page_soup.find("span", attrs={"class": "hidden-lists"})
print(target_3)