当前位置:网站首页>Python爬蟲實戰詳解:爬取圖片之家
Python爬蟲實戰詳解:爬取圖片之家
2020-11-06 01:17:00 【itread01】
前言
本文的文字及圖片來源於網路,僅供學習、交流使用,不具有任何商業用途,版權歸原作者所有,如有問題請及時聯絡我們以作處理
如何使用python去實現一個爬蟲?
- 模擬瀏覽器
請求並獲取網站資料
在原始資料中提取我們想要的資料 資料篩選
將篩選完成的資料做儲存
完成一個爬蟲需要哪些工具
- Python3.6
- pycharm 專業版
目標網站
圖片之家
https://www.tupianzj.com/
爬蟲程式碼
匯入工具
python 自帶的標準庫
import ssl
系統庫 自動建立儲存資料夾
import os
下載包
import urllib.request
網路庫 第三方包
import requests
網頁選擇器
from bs4 import BeautifulSoup
預設請求https網站不需要證書認證
ssl._create_default_https_context = ssl._create_unverified_context
模擬瀏覽器
headers = {
'User-Agent':
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36',
}
自動建立資料夾
if not os.path.exists('./插畫素材/'):
os.mkdir('./插畫素材/')
else:
pass
請求操作
url = 'https://www.tupianzj.com/meinv/mm/meizitu/' html = requests.get(url, headers=headers).text
對頁面原始資料做資料提取
soup = BeautifulSoup(html, 'lxml')
images_data = soup.find('ul', class_='d1 ico3').find_all_next('li')
for image in images_data:
image_url = image.find_all('img')
for _ in image_url:
print(_['src'], _['alt'])
下載
try:
urllib.request.urlretrieve(_['src'], './插畫素材/' + _['alt'] + '.jpg')
except:
pass
效果圖
版权声明
本文为[itread01]所创,转载请带上原文链接,感谢
https://www.itread01.com/content/1604499424.html
边栏推荐
- Python machine learning algorithm: linear regression
- 【QT】 QThread部分原始碼淺析
- In depth understanding of the construction of Intelligent Recommendation System
- After brushing leetcode's linked list topic, I found a secret!
- 制造和新的自动化技术是什么?
- 阻塞队列之LinkedBlockingQueue分析
- 接口压力测试:Siege压测安装、使用和说明
- Python自动化测试学习哪些知识?
- Electron应用使用electron-builder配合electron-updater实现自动更新
- PLC模拟量输入和数字量输入是什么
猜你喜欢

网络安全工程师演示:原来***是这样获取你的计算机管理员权限的!【维持】

面经手册 · 第12篇《面试官,ThreadLocal 你要这么问,我就挂了!》

Elasticsearch database | elasticsearch-7.5.0 application construction

如何将分布式锁封装的更优雅

简直骚操作,ThreadLocal还能当缓存用

谁说Cat不能做链路跟踪的,给我站出来

Network programming NiO: Bio and NiO

Cos start source code and creator

Anomaly detection method based on SVM

如何对Pandas DataFrame进行自定义排序
随机推荐
JetCache埋点的骚操作,不服不行啊
有关PDF417条码码制的结构介绍
5.5 ControllerAdvice注解 -《SSM深入解析与项目实战》
Microservices: how to solve the problem of link tracing
python 下载模块加速实现记录
对pandas 数据进行数据打乱并选取训练机与测试机集
Basic principle and application of iptables
什么是无副作用的函数方法?如何取名? - Mario
选择站群服务器的有哪些标准呢?
向北京集结!OpenI/O 2020启智开发者大会进入倒计时
Python machine learning algorithm: linear regression
6.8 multipartresolver file upload parser (in-depth analysis of SSM and project practice)
hadoop 命令总结
Python自动化测试学习哪些知识?
怎么理解Python迭代器与生成器?
如何成为数据科学家? - kdnuggets
DevOps是什么
03_ Detailed explanation and test of installation and configuration of Ubuntu Samba
简直骚操作,ThreadLocal还能当缓存用
面经手册 · 第12篇《面试官,ThreadLocal 你要这么问,我就挂了!》