用python爬点高质量的壁纸换换,每天保持心情愉悦!
2021/12/16 22:11:39
本文主要是介绍用python爬点高质量的壁纸换换,每天保持心情愉悦!,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
每天我的壁纸都是Windows自带的天蓝色,看的真的没意思,有意思吗,没意思~ 所以啊,当然的整一手高质量壁纸,没有别的意思,只为了心情愉悦~ 好了,不多哔哔,开启今天的高质量旅途~ 一、准备工作 这些统统安排上 软件- python 3.6
- pycharm
- requests
- parsel
import requests # 请求模块 第三方模块 pip install requests import parsel # 数据解析模块 第三方模块 pip install parsel import time # 时间模块 内置模块 time_1 = time.time() # 要什么用模块 首先要知道模块有什么用 for page in range(2, 12): print(f'====================正在爬取第{page}页的数据内容====================') url = f'http://www.netbian.com/1920x1080/index_{page}.htm' # 请求头: 把python代码伪装成浏览器对服务器发送请求 headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36' } response = requests.get(url=url, headers=headers) # 出现乱码怎么办? 需要转码 # html_data = response.content.decode('gbk') response.encoding = response.apparent_encoding # 自动转码 # 获取源代码/获取网页文本数据 response.text # print(response.text) # 解析数据 selector = parsel.Selector(response.text) # CSS选择器 就是根据网页标签内容提取数据 # 第一次提取 提取所有的li标签内容 lis = selector.css('.list li') for li in lis: # http://www.netbian.com/desk/23397.htm title = li.css('b::text').get() if title: href = 'http://www.netbian.com' + li.css('a::attr(href)').get() response_1 = requests.get(url=href, headers=headers) selector_1 = parsel.Selector(response_1.text) img_url = selector_1.css('.pic img::attr(src)').get() img_content = requests.get(url=img_url, headers=headers).content with open('img\\' + title + '.jpg', mode='wb') as f: f.write(img_content) print('正在保存: ', title) time_2 = time.time() use_time = int(time_2) - int(time_1) print(f'总计耗时{use_time}秒')
我还给大家准备了这些资料,直接在这里免费领。
# 一群:872937351 (群满了的话加二群) # 二群:924040232 # python学习路线汇总 # 精品Python学习书籍100本 # Python入门视频合集 # Python实战案例 # Python面试题 # Python相关软件工具/pycharm永久激活
大家可以自己运行试试,记得三连哇~
这篇关于用python爬点高质量的壁纸换换,每天保持心情愉悦!的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门