【发布时间】:2017-11-25 15:06:03
【问题描述】:
我正在尝试从网站上抓取一些数据。这是html格式。我要刮字"No description for 632930413867".
HTML代码:
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-6">
<table class="table product_info_table">
<tbody>
<tr>
<td>GS1 Address</td>
<td>R.R. 1, Box 2, Malmo, NE 68040</td>
</tr>
<tr>
<td>Description</td>
<td>
<div id="read_desc">
No description for 632930413867
</div>
</td>
</tr>
</tbody>
</table>
</div>
以及来自这个html的图片src
<div class="centered_image header_image">
<img src="https://images-na.ssl-images-amazon.com/images/I/416EuOE5kIL._SL160_.jpg" title="UPC 632930413867" alt="UPC 632930413867">
所以我使用这个代码
Baseurl = "https://www.buycott.com/upc/632930413867"
uClient = ''
while uClient == '':
try:
uClient = requests.get(Baseurl)
print("Relax we are getting the data...")
except:
print("Connection refused by the server..")
print("Let me sleep for 7 seconds")
time.sleep(7)
print("Was a nice sleep, now let me continue...")
continue
page_html = uClient.content
uClient.close()
page_soup = soup(page_html, "html.parser")
Productcontainer = page_soup.find_all("div", {"class": "row"})
link = page_soup.find(itemprop="image")
print(Productcontainer)
for item in Productcontainer:
print(link)
productdescription = Productcontainer.find("div", {"class": "product_info_table"})
print(productdescription)
当我运行此代码时,不会显示任何数据。怎么获取description和img src?
【问题讨论】:
标签: python html beautifulsoup