鱼C论坛

 找回密码
 立即注册
查看: 3086|回复: 4

为什么这个代码爬不出淘宝的比价信息

[复制链接]
发表于 2022-9-24 11:52:54 | 显示全部楼层 |阅读模式
5鱼币
#CrowTaobaoPrice.py
import requests
import re

def getHTMLText(url):
    try:
        r = requests.get(url, timeout=30)
        r.raise_for_status()
        r.encoding = r.apparent_encoding
        return r.text
    except:
        return ""
   
def parsePage(ilt, html):
    try:
        plt = re.findall(r'\"view_price\"\:\"[\d\.]*\"',html)
        tlt = re.findall(r'\"raw_title\"\:\".*?\"',html)
        for i in range(len(plt)):
            price = eval(plt[i].split(':')[1])
            title = eval(tlt[i].split(':')[1])
            ilt.append([price , title])
    except:
        print("")

def printGoodsList(ilt):
    tplt = "{:4}\t{:8}\t{:16}"
    print(tplt.format("序号", "价格", "商品名称"))
    count = 0
    for g in ilt:
        count = count + 1
        print(tplt.format(count, g[0], g[1]))
        
def main():
    goods = '书包'
    depth = 3
    start_url = 'https://s.taobao.com/search?q=' + goods
    infoList = []
    for i in range(depth):
        try:
            url = start_url + '&s=' + str(44*i)
            html = getHTMLText(url)
            parsePage(infoList, html)
        except:
            continue
    printGoodsList(infoList)
   
main()

最后的结果输出只有序号,价格和商品名称这几个字,而且淘宝我是登录了的

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-9-24 13:04:57 | 显示全部楼层
至少从代码上看没有带user password也没有带cookie,怎么登陆的?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2022-9-24 14:43:05 From FishC Mobile | 显示全部楼层
suchocolate 发表于 2022-9-24 13:04
至少从代码上看没有带user password也没有带cookie,怎么登陆的?

我在网页淘宝上登录了,这个代码是我复制慕课上一个老师的,但是他的可以运行出来,不知道为什么我运行不出来
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-9-24 15:46:17 | 显示全部楼层
sjnn64994 发表于 2022-9-24 14:43
我在网页淘宝上登录了,这个代码是我复制慕课上一个老师的,但是他的可以运行出来,不知道为什么我运行不 ...

教程老了换个教程吧,现在不带cookie怎么能拿到。print一下html也能看出来根本就没有数据。
另外你浏览器示登陆是你的浏览器,python爬虫是另外的进程,跟不不相干,更不会共享cookie。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2022-9-24 15:57:24 | 显示全部楼层
suchocolate 发表于 2022-9-24 15:46
教程老了换个教程吧,现在不带cookie怎么能拿到。print一下html也能看出来根本就没有数据。
另外你浏览 ...

可以推荐一下教程吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-10 17:32

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表