鱼C论坛

 找回密码
 立即注册
查看: 2117|回复: 3

爬虫问题。单个链接能爬取出来,使用for循环,结果是空列表

[复制链接]
发表于 2022-4-9 22:40:32 | 显示全部楼层 |阅读模式

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

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

x
ls = ['http://lwj.sanya.gov.cn/wljsite/ydtj/list2.shtml/wljsite/ydtj/202203/b43442ca2f8c4ca5a9f8d10186b8a8f1.shtml',
'http://lwj.sanya.gov.cn/wljsite/ydtj/list2.shtml/wljsite/ydtj/202202/d7498541d147437ea352be69f0080ded.shtml',
'http://lwj.sanya.gov.cn/wljsite/ydtj/list2.shtml/wljsite/ydtj/202201/446aa96ff45c49bcb52a2facc02b6cd2.shtml']

def sylv(link):
    r = requests.get(link,headers=headers)
    r.encoding = 'utf-8'
    html1 = etree.HTML(r.text)


    link_xpath = html1.xpath('//*[@id="news_content"]/ucapcontent//text()')

    #去除不必要字符
    link_xpath = [el.replace('\r\n', '') for el in link_xpath]
    print(link_xpath)
    
    data_n = link_xpath
    f = r"C:\Users\13783\Desktop\test.txt"
    a = data_n
    with open(f,"a") as file:
        for i in range(len(a)):
            file.write(str(a[i]) + "d" + " "+"\n")
        file.write('*'*50)
        
for t in ls:
    sylv(t)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-4-10 16:13:04 | 显示全部楼层
headers赋值了吗?代码发全
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-4-10 22:47:06 | 显示全部楼层
suchocolate 发表于 2022-4-10 16:13
headers赋值了吗?代码发全

你好,headers赋值了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-4-12 13:06:06 | 显示全部楼层
wk934530 发表于 2022-4-10 22:47
你好,headers赋值了

没看到
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-11 18:35

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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