找回密碼
 註冊
搜索
查看: 1668|回復: 0

[教學] 【Python 爬蟲】抓取 Google search 搜尋結果的連結 python 2.7

[複製鏈接]
發表於 2022-4-5 22:35:36 | 顯示全部樓層 |閱讀模式
 
Push to Facebook
記錄一下批量抓取 Google 搜尋結果裡的連結的方法。


如果還沒有安裝以下,要先下載安裝:

  1. pip install beautifulsoup4
  2. pip install google
複製代碼

Code
  1. from googlesearch import search
  2. query = "cambridge"
  3. for j in search(query, stop=5, pause=2.0):
  4.         print(j)
複製代碼

Result

Python 爬蟲 Google 搜尋結果 beautifulsoup

Python 爬蟲  Google 搜尋結果 beautifulsoup



接下來設定排程
  1. /usr/bin/python3 /home/xxx/public_html/seo_crawler.py > /dev/null 2>&2
複製代碼

seorank.png


文章出處



 
您需要登錄後才可以回帖 登錄 | 註冊

本版積分規則

Archiver|手機版|小黑屋|TShopping

GMT+8, 2025-4-30 18:11 , Processed in 0.025374 second(s), 24 queries .

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回復 返回頂部 返回列表