python爬蟲如何獲取表情包
1、建立請求頭,也被稱為偽裝瀏覽器
如果不新增請求頭的話,可能會出現當前網站沒有訪問許可權。
2、使用requests 網路請求庫完成網站資料請求
3、獲取資料後使用bs4對頁面資料進行提取
需要用到一個非常好用的第三方包:bs4。
例項
import os import requests from bs4 import BeautifulSoup if not os.path.exists('./images/'): os.mkdir('./images/') 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' } url = '' response = requests.get(url, headers=headers).text ''' lxml: html解析庫,因為python和html兩者沒有關係 python沒有辦法直接控制html程式碼 我們就需要使用lxml這個庫將html程式碼轉成python物件 需要大家去下載 pip install lxml ''' soup = BeautifulSoup(response, 'lxml') img_list = soup.find_all('img', class_='ui image lazy') for img in img_list: img_url = img['data-original'] img_title = img['title'] print(img_url, img_title) try: with open('./images/' + img_title + os.path.splitext(img_url)[-1], 'wb') as f: ''' 因為一張圖片是二進位制資料 如果我們使用text文字形式返回 會對檔案造成破壞 使用content去返回原始資料 ''' image = requests.get(img_url, headers=headers).content # 寫入二進位制資料 image這個變數是儲存requests返回的二進位制資料的 f.write(image) print('儲存成功:', img_title) except: pass
以上就是python爬蟲獲取表情包的方法,希望對大家有所幫助。更多Python學習指路:
本文教程操作環境:windows7系統、Python 3.9.1,DELL G3電腦。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1020/viewspace-2829527/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python爬蟲入門教程 13-100 鬥圖啦表情包多執行緒爬取Python爬蟲執行緒
- python爬取鬥圖啦表情包並下載到本地Python
- python爬蟲獲取百度熱搜Python爬蟲
- Python 爬蟲、抓包Python爬蟲
- Python 爬蟲獲取網易雲音樂歌手資訊Python爬蟲
- python爬蟲從ip池獲取隨機IPPython爬蟲隨機
- python 爬蟲之獲取標題和連結Python爬蟲
- python爬蟲,獲取中國工程院院士資訊Python爬蟲
- python爬蟲---網頁爬蟲,圖片爬蟲,文章爬蟲,Python爬蟲爬取新聞網站新聞Python爬蟲網頁網站
- 如何合理控制爬蟲爬取速度?爬蟲
- python 爬蟲 爬取 learnku 精華文章Python爬蟲
- python爬蟲——爬取大學排名資訊Python爬蟲
- Python爬蟲精簡步驟1 獲取資料Python爬蟲
- 利用Python爬蟲獲取招聘網站職位資訊Python爬蟲網站
- Python 爬蟲獲取網易雲音樂歌手歌詞Python爬蟲
- python爬蟲獲取天氣網實時資料Python爬蟲
- 網路爬蟲如何獲取IP進行資料抓取爬蟲
- python爬蟲--爬取鏈家租房資訊Python爬蟲
- Python爬蟲爬取美劇網站Python爬蟲網站
- python爬蟲爬取糗事百科Python爬蟲
- 如何用Python網路爬蟲爬取網易雲音樂歌曲Python爬蟲
- python 爬蟲如何爬取動態生成的網頁內容Python爬蟲網頁
- 【Python學習】爬蟲爬蟲爬蟲爬蟲~Python爬蟲
- 如何高效獲取大資料?動態ip代理:用爬蟲!大資料爬蟲
- 爬蟲爬取資料如何繞開限制?爬蟲
- 如何提高爬取爬蟲採集的效率?爬蟲
- Python爬蟲入門教程 50-100 Python3爬蟲爬取VIP視訊-Python爬蟲6操作Python爬蟲
- python 爬蟲 1 爬取酷狗音樂Python爬蟲
- Python爬蟲爬取淘寶,京東商品資訊Python爬蟲
- 小白學 Python 爬蟲(25):爬取股票資訊Python爬蟲
- python網路爬蟲--爬取淘寶聯盟Python爬蟲
- Python實現微博爬蟲,爬取新浪微博Python爬蟲
- Python爬蟲—爬取某網站圖片Python爬蟲網站
- 爬蟲——爬取貴陽房價(Python實現)爬蟲Python
- 【Python爬蟲】正則爬取趕集網Python爬蟲
- 利用Python爬蟲爬取天氣資料Python爬蟲
- 用Python網路爬蟲獲取Mikan動漫資源Python爬蟲
- 【python爬蟲】python爬蟲demoPython爬蟲