链接:https://list.jd.com/list.html?cat=670,671,1105&ev=exbrand_8551&page=
1&delivery=1&delivery_daofu=0&sort=sort_totalsales15_desc&trans=1&JL=4_11_0#J_main
https://item.jd.com/5270331.html?dist=jd#product-detail
想把爬取到结果保存的excel,如图3所示:
1
2
3
请求网页,分析页面,保存即可
请求网页 可以使用urllib系列,或者requests
分析页面 可以使用htmlparser,beautifulsoup4,还有正则等等
保存 可以直接'wb'到csv文件,也可以使用xlrd、xlwt、xlutils等库操作excel
具体可能还会遇到一些问题,自己搜索