鱼C论坛

 找回密码
 立即注册
查看: 1987|回复: 2

求助各位老哥

[复制链接]
发表于 2020-9-15 21:57:38 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
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]))
        
    print("")

def main():
    goods = 'cherry轴键盘'
    depth = 2
    start_url = 'https://s.taobao.com/search?q=' + goods
    infoList = []
    for i in range(depth):
        try:
            url = start_url + '&s='
            html = getHTMLText(url)
            parsePage(infoList,html)
        except:
            continue
    printGoodsList(infoList)

main()

只打印出了序号,价格和名称三个标题,没有具体的信息,求各位帮我看看哪里出了问题
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-16 11:01:36 | 显示全部楼层
本帖最后由 疾风怪盗 于 2020-9-16 13:17 编辑

淘宝登陆你是怎么解决的?
print(r.text)
只爬到了登陆前的页面,没有爬到数据
代码里这里也报错了,split前怎么没字符
price = eval(plt[i], split(':')[1])
这里也写错了
title = eval(tlt)[i], split(':')[1]
估计不是你自己写的吧,网上抄来的?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-9-16 11:08:31 | 显示全部楼层
要么加cookie试试
要么先用Selenium登陆了之后再获取数据吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-18 16:55

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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