在Python中,可以使用多种方式遍历网页,以下是两种常见的方法:
import requests
from bs4 import BeautifulSoup
# 发送HTTP请求获取网页内容
response = requests.get('http://example.com')
html_content = response.text
# 解析HTML内容
soup = BeautifulSoup(html_content, 'html.parser')
# 遍历网页上的所有链接
for link in soup.find_all('a'):
print(link.get('href'))
import scrapy
class MySpider(scrapy.Spider):
name = 'example'
start_urls = ['http://example.com']
def parse(self, response):
# 遍历网页上的所有链接
for link in response.css('a::attr(href)').getall():
yield {
'link': link
}
以上是两种常见的方法,根据具体的需求选择合适的方式进行网页遍历。