BeautifulSoup- find_all-订单保存

时间:2018-03-13 05:20:25

标签: python beautifulsoup

我正在尝试解析一个具有相同名称的各种类的网站。我想采取第一个(在网页上看到)类的元素。但是,find_all或find不保留解析的顺序。下面是我对find_all

的实现

请帮助:

searchQueryFK = "https://www.flipkart.com/search?q="+str("panasonic%2043e200dx")
r = urllib.request.urlopen(searchQueryFK).read()
soup = BeautifulSoup(r,'html.parser')
FKPrice = soup.find_all("div", {'class':"_2SxMvQ"})[0].find_all("div", {'class':"_1vC4OE"})[0]

print(FKPrice.text[1:])

0 个答案:

没有答案