from bs4 import BeautifulSoup as bs4

import urllib

import requests

url="https://steamcommunity.com/profiles/games/?tab=all"

req = urllib.request.Request(url)

html = urllib.request.urlopen(req).read()

soup = bs4(html,"lxml")

nick = soup.find("a",{"class":"whiteLink"})


print(nick)

i = soup.find("div",{"_:class":"gameListRow"})

print(i)


하면 닉네임은 뜨는데


아래는 아무것도 안뜸




soup.find("div")
하면 긁어오긴 함