Python有多種方法可以自動抓取網頁,以下是其中常用的幾種方法:
示例代碼:
import requests
url = "http://www.example.com"
response = requests.get(url)
content = response.text
print(content)
示例代碼:
import urllib.request
url = "http://www.example.com"
response = urllib.request.urlopen(url)
content = response.read().decode('utf-8')
print(content)
示例代碼:
from bs4 import BeautifulSoup
import requests
url = "http://www.example.com"
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
# 這里可以使用BeautifulSoup提供的各種方法提取需要的數據
示例代碼:
import scrapy
class MySpider(scrapy.Spider):
name = 'example.com'
start_urls = ['http://www.example.com']
def parse(self, response):
# 這里可以使用Scrapy提供的各種方法提取需要的數據
以上是常用的幾種方法,具體選擇哪種方法取決于實際需求和個人偏好。