Hello good day, I am trying to extract the information from that page with python and BeautifulSoap, so far I have managed to extract the part of the yellow box below and filter it, but the box above it is impossible to extract the filtered information.
The part in bold if I can extract it, but I do not understand how to remove the element that is below because it has no class label and I do not know how to access it, there are 5 elements and I do not give more. Any ideas?
import urllib.request
import bs4 as bs
sauce = urllib.request.urlopen(html).read()
soup = bs.BeautifulSoup(sauce,'html.parser')
for negritas in soup.find_all(class_ = "negritas"):
print (negritas.get_text())