我正在尝试从该网站上删除手机型号列表https://www.m1.com.sg/personal/mobile/phones/filters/all-plans/all/all/0/1500/0/0/没有任何
这将列出型号和价格。我有以下代码,但所有价格都不正确。他们不应该是零。我做错了什么?
此外,是否可以仅使用美丽的汤提供可点击的链接(允许用户点击“更多信息”,将他们带到包含手机型号附加信息的页面)?例如:
iPhone XR 128GB
$ 0
More Info
import urllib.request
from bs4 import BeautifulSoup
from html.parser import HTMLParser
url_toscrape = "https://www.m1.com.sg/personal/mobile/phones/filters/all-plans/all/all/0/1500/0/0/none"
response = urllib.request.urlopen(url_toscrape)
info_type = response.info()
responseData = response.read()
soup = BeautifulSoup(responseData, 'lxml')
Model_findall=soup.findAll("div",{"class":"td three title text-center"})
price_findall=soup.findAll("div",{"class":"td two price text-center"})
for models in Model_findall:
print('*',models.text.strip())
print(' ',price.text.strip())
守着星空守着你
牧羊人nacy
开心每一天1111
相关分类