在Python中,網(wǎng)絡(luò)爬蟲是一種用于從網(wǎng)站上抓取數(shù)據(jù)的程序。為了實(shí)現(xiàn)網(wǎng)絡(luò)爬蟲,你需要使用一些庫和工具,如requests
和BeautifulSoup
。以下是一個(gè)簡(jiǎn)單的網(wǎng)絡(luò)爬蟲示例,用于抓取網(wǎng)站上的標(biāo)題和鏈接:
requests
和beautifulsoup4
庫。如果沒有,請(qǐng)使用以下命令安裝:pip install requests beautifulsoup4
web_scraper.py
的Python文件,并在其中編寫以下代碼:import requests
from bs4 import BeautifulSoup
def get_page(url):
response = requests.get(url)
if response.status_code == 200:
return response.text
else:
print(f"Error: Unable to fetch the page. Status code: {response.status_code}")
return None
def parse_page(html):
soup = BeautifulSoup(html, "html.parser")
titles = soup.find_all("h2") # 根據(jù)網(wǎng)頁結(jié)構(gòu)選擇合適的標(biāo)簽
links = soup.find_all("a")
for title, link in zip(titles, links):
print(f"Title: {title.get_text().strip()}")
print(f"Link: {link['href']}\n")
def main():
url = input("Enter the URL of the website you want to scrape: ")
html = get_page(url)
if html:
parse_page(html)
if __name__ == "__main__":
main()
web_scraper.py
文件,然后輸入要抓取的網(wǎng)站URL。程序?qū)⑤敵鲰撁嫔系臉?biāo)題和鏈接。注意:這個(gè)示例僅適用于具有特定HTML結(jié)構(gòu)的網(wǎng)站。你需要根據(jù)要抓取的網(wǎng)站的實(shí)際HTML結(jié)構(gòu)來修改parse_page
函數(shù)中的代碼。此外,如果需要處理JavaScript渲染的頁面,可以考慮使用Selenium
或Scrapy
等工具。