吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2204|回复: 20
收起左侧

[学习记录] 【学习笔记】python 4k写真下载

[复制链接]
17798 发表于 2022-4-10 19:42
[Python] 纯文本查看 复制代码
import requests
import parsel
import os  #1069  2145
url='https://www.yituyu.com/gallery/1069/'
headers={'user-agent': 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)' }
try:
        path=os.getcwd()
        file_path=path+'\\'+'4k写真'
        os.mkdir(file_path)
except:
        pass
x=1069
while(x<2146):
    y=1
    urls='https://www.yituyu.com/gallery/'+str(x)+'/'
    FIRst=requests.get(urls,headers).text
    selector=parsel.Selector(FIRst)
    url=selector.xpath('//div[@class="gallerypic"]/img/@data-src').getall()
    name=selector.xpath('//div[@class="gallerypic"]/img[1]/@alt').get()
    for i in url:
        LASt=requests.get(i,headers).content
        with open(f'{file_path}\\{name}'+str(y)+'.jpg','wb')as f: 
            f.write(LASt)
            print('正在写入:'+name)
            y+=1
        x+=1     

免费评分

参与人数 6吾爱币 +5 热心值 +5 收起 理由
iu2010 + 1 + 1 用心讨论,共获提升!
lovesawomen + 1 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!
我来了老大 + 1 + 1 热心回复!
zhangzsf + 1 + 1 谢谢@Thanks!
tuanyu + 1 我很赞同!
arvin1024 + 1 我很赞同!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

 楼主| 17798 发表于 2022-4-10 19:44
初学python  记录一下
atmo 发表于 2022-4-10 21:26
layuai 发表于 2022-4-10 21:42
jffwoo 发表于 2022-4-10 21:51
对于headers这样的的参数,都是需要修改的吧!希望这样的程序贴上来能加一个这样的注释
zxxwuai 发表于 2022-4-10 22:42
爬爬爬爬爬爬爬爬爬爬爬爬,goodgoodgood
huiker231 发表于 2022-4-10 23:03
atmo 发表于 2022-4-10 21:26
我是来看你扒那个网站的

想到一起了
huiker231 发表于 2022-4-10 23:10
x=1069
while(x<2146):
为什么只爬2146-1069=1077个用户,而不是全面爬
zhuguang123 发表于 2022-4-11 01:17
Python还是好玩
bj9ye666 发表于 2022-4-11 07:00
python是无敌的,真是学会啥都能做
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 11:30

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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