91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python爬蟲的必備技巧有哪些

發布時間:2021-10-22 10:11:12 來源:億速云 閱讀:132 作者:iii 欄目:開發技術

這篇文章主要介紹“Python爬蟲的必備技巧有哪些”,在日常操作中,相信很多人在Python爬蟲的必備技巧有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Python爬蟲的必備技巧有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

自定義函數

import requests
from bs4 import BeautifulSoup
headers={'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0'}
def baidu(company):
    url = 'https://www.baidu.com/s?rtt=4&tn=news&word=' + company
    print(url)
    html = requests.get(url, headers=headers).text
    s = BeautifulSoup(html, 'html.parser')
    title=s.select('.news-title_1YtI1 a')
    for i in title:
        print(i.text)
# 批量調用函數
companies = ['騰訊', '阿里巴巴', '百度集團']
for i in companies:
    baidu(i)

批量輸出多個搜索結果的標題

Python爬蟲的必備技巧有哪些

結果保存為文本文件

import requests
from bs4 import BeautifulSoup
headers={'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0'}
def baidu(company):
    url = 'https://www.baidu.com/s?rtt=4&tn=news&word=' + company
    print(url)
    html = requests.get(url, headers=headers).text
    s = BeautifulSoup(html, 'html.parser')
    title=s.select('.news-title_1YtI1 a')
    fl=open('test.text','a', encoding='utf-8')
    for i in title:
        fl.write(i.text + '\n')
# 批量調用函數
companies = ['騰訊', '阿里巴巴', '百度集團']
for i in companies:
    baidu(i)

Python爬蟲的必備技巧有哪些

寫入代碼

fl=open('test.text','a', encoding='utf-8')
for i in title:
	fl.write(i.text + '\n')

異常處理

for i in companies:
    try:
        baidu(i)
        print('運行成功')
    except:
        print('運行失敗')

寫在循環中 不會讓程序停止運行 而會輸出運行失敗

休眠時間

import time
for i in companies:
    try:
        baidu(i)
        print('運行成功')
    except:
        print('運行失敗')
time.sleep(5)

time.sleep(5)

括號里的單位是秒

放在什么位置 則在什么位置休眠(暫停)

爬取多頁內容

百度搜索騰訊

Python爬蟲的必備技巧有哪些

切換到第二頁

Python爬蟲的必備技巧有哪些

去掉多多余的

https://www.baidu.com/s?wd=騰訊&pn=10

分析出

https://www.baidu.com/s?wd=騰訊&pn=0 為第一頁
https://www.baidu.com/s?wd=騰訊&pn=10 為第二頁
https://www.baidu.com/s?wd=騰訊&pn=20 為第三頁
https://www.baidu.com/s?wd=騰訊&pn=30 為第四頁
..........

代碼

from bs4 import BeautifulSoup
import time
headers={'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0'}
def baidu(c):
    url = 'https://www.baidu.com/s?wd=騰訊&pn=' + str(c)+'0'
    print(url)
    html = requests.get(url, headers=headers).text
    s = BeautifulSoup(html, 'html.parser')
    title=s.select('.t a')
    for i in title:
        print(i.text)

for i in range(10):
    baidu(i)
    time.sleep(2)

Python爬蟲的必備技巧有哪些

到此,關于“Python爬蟲的必備技巧有哪些”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

河北省| 高邑县| 安多县| 隆回县| 峡江县| 九龙坡区| 沁阳市| 夏邑县| 鄱阳县| 广宗县| 连南| 天门市| 平顺县| 来安县| 佛坪县| 宣武区| 隆尧县| 邵阳县| 桑植县| 松滋市| 金川县| 昭平县| 上犹县| 泗水县| 汾阳市| 延庆县| 陆川县| 孙吴县| 北安市| 梁河县| 越西县| 和顺县| 贵阳市| 丁青县| 闽侯县| 阜康市| 大埔县| 健康| 濮阳县| 秦皇岛市| 洪湖市|