Pythonda html kod hatası

import requests,time

from bs4 import BeautifulSoup

headers = {'User-Agent': 'Mozilla/5.0'}

url = "https://www.transfermarkt.com.tr/galatasaray-istanbul/startseite/verein/141/saison_id/2020"

html = requests.get(url, headers=headers).content

soup = BeautifulSoup(html, "html.parser")

print(soup)
1 Beğeni