Python 3.x ';非类型';对象不适用于美化组

Python 3.x ';非类型';对象不适用于美化组,python-3.x,web-scraping,beautifulsoup,Python 3.x,Web Scraping,Beautifulsoup,我正在尝试网页抓取。但是,由于此错误,无法继续。如果有人能帮我,我会很高兴的 这是我的密码 from bs4 import BeautifulSoup as soup from urllib.request import urlopen as uReq my_url = "https://www.newegg.com/Video-Cards-Video-Devices/Category/ID-38?Tpk=graphics%20card" uClient = uReq(my

我正在尝试网页抓取。但是,由于此错误,无法继续。如果有人能帮我,我会很高兴的

这是我的密码

from bs4 import BeautifulSoup as soup
from urllib.request import urlopen as uReq
my_url = "https://www.newegg.com/Video-Cards-Video-Devices/Category/ID-38?Tpk=graphics%20card"

uClient = uReq(my_url)
page_html = uClient.read()
uClient.close()
#html parsing
page_soup = soup(page_html,"html.parser")
containers = page_soup.findALL("div",{"class":"item-branding"})
下面是错误


TypeError回溯(最近一次调用上次) 在里面 13 14 --->15 containers=page_soup.findALL(“div”,“class”:“item branding”}) 16长度(集装箱) 十七,


TypeError:“非类型”对象不可调用

它是
page\u soup.findAll(“div”,“class”:“项目品牌化”})
。不是
page\u soup.findALL(“div”,“class”:“item branding”})
(注意小的“l”)

尝试
find\u all
而不是
findALL
。。。!进展如何??