I can't locate a reocurring element from a bs4 object
问题 The issue I am having is driving me crazy. I am trying to pull text from the Pro Football Reference website. The information I need is in a td element displaying qb hurries In the second section of the web page. The information is in a td element called qb_hurry . Here is what I have so far: res = requests.get('https://www.pro-football-reference.com/players/D/DonaAa00.htm') soup = bs4.BeautifulSoup(res.text, 'html.parser') I tried totalQbHurrys = soup.find('div', {'id':'all_detailed_defense'}