Python Forum
How can I target and scrape a data-stat
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can I target and scrape a data-stat
#4
You get that error because you loop is wrong,so try to do a string slice.
Also it's not div it's in a table th tag.
Do not use try:except when testing stuff out.
from bs4 import BeautifulSoup
import requests

html = requests.get('https://fbref.com/en/squads/19538871/Manchester-United-Stats')
html.raise_for_status()
soup = BeautifulSoup(html.content, 'lxml')
clubs = soup.find(class_='stats_table')
players = clubs.find_all('th', {'data-stat': 'player'})
for name in players:
    print(name.text)
Output:
Player David de Gea Bruno Fernandes Harry Maguire Scott McTominay Fred Cristiano Ronaldo Mason Greenwood Aaron Wan-Bissaka Luke Shaw ....
Reply


Messages In This Thread
RE: How can I target and scrape a data-stat - by snippsat - Feb-10-2022, 07:25 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Trying to scrape data from HTML with no identifiers pythonpaul32 2 980 Dec-02-2023, 03:42 AM
Last Post: pythonpaul32
  I am trying to scrape data to broadcast it on Telegram BarryBoos 1 2,310 Jun-10-2023, 02:36 PM
Last Post: snippsat
  Is it possible to scrape this data from Google Searches rosjo 1 2,242 Nov-06-2020, 06:51 PM
Last Post: Larz60+
  [WinError 10061] No connection could be made because the target machine actively refu kannanponraj 1 8,525 May-10-2020, 10:39 AM
Last Post: Larz60+
  scrape data 1 go to next page scrape data 2 and so on alkaline3 6 5,367 Mar-13-2020, 07:59 PM
Last Post: alkaline3
  Want to scrape a table data and export it into CSV format tahir1990 9 5,419 Oct-22-2019, 08:03 AM
Last Post: buran
  webscrapping links and then enter those links to scrape data kirito85 2 3,294 Jun-13-2019, 02:23 AM
Last Post: kirito85
  Scrape ASPX data with python... hoff1022 0 4,586 Feb-26-2019, 06:16 PM
Last Post: hoff1022
  Target: Web Scraping / Web Automation vetabz 2 3,706 May-07-2017, 01:47 PM
Last Post: vetabz

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020