当前位置:网站首页>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
边栏推荐
- 如何使用ES6中的参数
- 事半功倍:在没有机柜的情况下实现自动化
- 01 . Go语言的SSH远程终端及WebSocket
- 50 + open source projects are officially assembled, and millions of developers are voting
- vite + ts 快速搭建 vue3 專案 以及介紹相關特性
- How to demote a domain controller in Windows Server 2012 and later
- 7.2.2 compressing static resources through gzipresourceresolver
- Introduction to Google software testing
- 給萌新HTML5 入門指南(二)
- DTU连接经常遇到的问题有哪些
猜你喜欢
随机推荐
微服務 - 如何解決鏈路追蹤問題
Jmeter——ForEach Controller&Loop Controller
解決pl/sql developer中資料庫插入資料亂碼問題
Outlier detection based on RNN self encoder
mongodb(从0到1),11天mongodb初级到中级进阶秘籍
6.8 multipartresolver file upload parser (in-depth analysis of SSM and project practice)
JetCache埋点的骚操作,不服不行啊
条码生成软件如何隐藏部分条码文字
读取、创建和运行多个文件的3个Python技巧
(1)ASP.NET Core3.1 Ocelot介紹
免费的专利下载教程(知网、espacenet强强联合)
Probabilistic linear regression with uncertain weights
事半功倍:在没有机柜的情况下实现自动化
安装Anaconda3 后,怎样使用 Python 2.7?
高级 Vue 组件模式 (3)
mac 安装hanlp,以及win下安装与使用
PLC模拟量输入和数字量输入是什么
谁说Cat不能做链路跟踪的,给我站出来
自然语言处理之命名实体识别-tanfordcorenlp-NER(一)
如何使用ES6中的参数