Код: Выделить всё
import requests
from bs4 import BeautifulSoup
url = 'https://fbref.com/en/comps/9/2023-2024/stats/2023-2024-Premier-League-Stats'
page = requests.get(url)
soup = BeautifulSoup(page.text, 'html.parser')
table = soup.find('table', id='stats_standard')
print(table) # None
Подробнее здесь: https://stackoverflow.com/questions/790 ... utifulsoup