Python 是一種廣泛使用的編程語言,擁有強大的數據采集和處理能力。在本文中,我們將使用 Python 編寫采集小視頻的程序,讓我們一起來看看吧。
import requests from bs4 import BeautifulSoup # 設置請求頭 headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36' } # 模擬瀏覽器發送請求 url = 'https://www.toutiao.com/ch/video/' response = requests.get(url, headers=headers) # 解析 HTML soup = BeautifulSoup(response.content, 'html.parser') videos = soup.select('div.item-right div.item-label-video a') # 獲取視頻 URL for video in videos: video_url = video.get('data-src') print(video_url)
在上面這個程序中,我們使用了 requests 庫來發送 HTTP 請求,并指定了 User-Agent 作為請求頭。通過 BeautifulSoup 庫解析返回的 HTML,我們可以獲取到視頻的 URL 地址。
最后,我們可以將獲取到的視頻 URL 賦值給一個變量,進一步下載或處理視頻。
以上就是使用 Python 采集小視頻的簡單實現。希望本文能夠幫助大家更好地了解 Python 的應用。
上一篇python 里面空值
下一篇python 打印元組值