用python写一段爬虫脚本
时间: 2023-10-01 15:09:25 浏览: 148
一键生成QQ个人历史报告-爬虫python代码
Sure! 可以使用 Python 的 requests 和 BeautifulSoup 库来编写一个基本的爬虫脚本,用来爬取一个网站上的某些内容,以下是示例代码:
```
import requests
from bs4 import BeautifulSoup
url = 'https://www.example.com'
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
# 获取页面中所有的文本
for text in soup.find_all(text=True):
print(text.strip())
```
注意:这只是一个示例脚本,具体根据不同情况进行调整和改进。
阅读全文