在爬蟲(chóng)中取元素的值有多種方法,下面是幾種常用的方法:
import re
html = "<a href='https://www.example.com'>Example</a>"
links = re.findall(r"<a.*?href=['\"](.*?)['\"].*?>(.*?)</a>", html)
for link in links:
url = link[0]
text = link[1]
print("URL:", url)
print("Text:", text)
from bs4 import BeautifulSoup
html = "<h1>This is a title</h1>"
soup = BeautifulSoup(html, 'html.parser')
titles = soup.find_all('h1')
for title in titles:
print("Title:", title.text)
from lxml import etree
html = "<p>This is a paragraph.</p>"
tree = etree.HTML(html)
paragraphs = tree.xpath('//p')
for paragraph in paragraphs:
print("Text:", paragraph.text)
這些都是常見(jiàn)的方法,具體使用哪種方法取決于你所爬取的網(wǎng)站和數(shù)據(jù)結(jié)構(gòu)的特點(diǎn)。